homebrew-core/Formula/libidl.rb
Adam Vandenberg 7bd947eb0b Update formulae for version 0.7
* Use new "url" features
* Use keg_only DSL
* Use "skip_clean :all" DSL
* Whitespace and style cleanups
* Make bash invocations less silly
* Use new man2-man8 helpers
* Remove "FileUtils." since it is included in Formula
* Use real names for deps instead of aliases
* ENV.x11 now updates path, so remove that from individual brews
2010-08-07 18:08:53 -07:00

18 lines
559 B
Ruby

require 'formula'
class Libidl <Formula
url 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/libIDL-0.8.13.tar.bz2'
# The real homepage wasn't responding when this brew was created:
# homepage 'http://andrewtv.org/libIDL/'
homepage 'http://ftp.acc.umu.se/pub/gnome/sources/libIDL/0.8/'
md5 'b43b289a859eb38a710f70622c46e571'
depends_on 'pkg-config'
depends_on 'gettext'
depends_on 'glib'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end