943097ada6
Closes Homebrew/homebrew#14645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
441 B
Ruby
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
|