gnustep-make 2.6.2

Closes Homebrew/homebrew#14645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Pepijn de Vos 2012-09-02 19:24:22 +02:00 committed by Adam Vandenberg
parent f20a065dcb
commit 943097ada6

14
Formula/gnustep-make.rb Normal file
View file

@ -0,0 +1,14 @@
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