blob: c28b4cb98503114cfda5d6985629eef28f83dc3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|