diff options
| author | Pepijn de Vos | 2012-09-02 19:24:22 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-11-11 13:08:39 -0800 |
| commit | 80d88a89207d0dabbdc4f5d3959c5f18431e4a04 (patch) | |
| tree | de5973c32a51176285ce71d623d1568394ebbe4a /Library/Formula/gnustep-make.rb | |
| parent | 5e83d6ef95e7a241f816e8fd01dd0e6e20b428f2 (diff) | |
| download | homebrew-80d88a89207d0dabbdc4f5d3959c5f18431e4a04.tar.bz2 | |
gnustep-make 2.6.2
Closes #14645.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/gnustep-make.rb')
| -rw-r--r-- | Library/Formula/gnustep-make.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/gnustep-make.rb b/Library/Formula/gnustep-make.rb new file mode 100644 index 000000000..c28b4cb98 --- /dev/null +++ b/Library/Formula/gnustep-make.rb @@ -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 |
