homebrew-core/Formula/logstalgia.rb

37 lines
926 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Logstalgia < Formula
url 'http://logstalgia.googlecode.com/files/logstalgia-1.0.3.tar.gz'
2011-05-27 05:02:55 +00:00
head 'https://github.com/acaudwell/Logstalgia.git'
homepage 'http://code.google.com/p/logstalgia/'
md5 '5160380adb1fb1ed9272cf57fbdf3341'
depends_on 'pkg-config' => :build
depends_on 'sdl'
depends_on 'sdl_image'
depends_on 'ftgl'
depends_on 'jpeg'
depends_on 'pcre'
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
depends_on "automake" => :build
depends_on "libtool" => :build
end
def install
ENV.x11 # Put freetype-config in path
# For non-/usr/local installs
ENV.append "CXXFLAGS", "-I#{HOMEBREW_PREFIX}/include"
# Handle building head.
system "autoreconf -f -i" if ARGV.build_head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end