aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnustep-make.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/gnustep-make.rb')
-rw-r--r--Library/Formula/gnustep-make.rb14
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