homebrew-core/Formula/gnustep-make.rb
Pepijn de Vos 943097ada6 gnustep-make 2.6.2
Closes Homebrew/homebrew#14645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 13:08:39 -08:00

14 lines
441 B
Ruby

require 'formula'
class GnustepMake < Formula
homepage 'http://gnustep.org'
url 'http://ftpmain.gnustep.org/pub/gnustep/core/gnustep-make-2.6.2.tar.gz'
sha1 '3f85cb25f4f7fd35cdcbd8d948a2673c84c605ff'
def install
system "./configure", "--prefix=#{prefix}",
"--with-config-file=#{prefix}/etc/GNUstep.conf",
"--enable-native-objc-exceptions"
system "make install"
end
end