Add Logstalgia 1.0.2 formula.

Closes Homebrew/homebrew#3800.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
James Abley 2011-01-02 14:21:15 +00:00 committed by Mike McQuaid
parent aba69eea0b
commit ddf7df6258
1 changed files with 30 additions and 0 deletions

30
Formula/logstalgia.rb Normal file
View File

@ -0,0 +1,30 @@
require 'formula'
class Logstalgia <Formula
url 'http://logstalgia.googlecode.com/files/logstalgia-1.0.2.tar.gz'
head 'git://github.com/acaudwell/Logstalgia.git'
homepage 'http://code.google.com/p/logstalgia/'
md5 'c72fcff8fd507bee6c1aebf80d24009c'
depends_on 'pkg-config' => :build
depends_on 'sdl'
depends_on 'sdl_image'
depends_on 'ftgl'
depends_on 'jpeg'
depends_on 'pcre'
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" unless File.exist? "configure"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end