diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gplcver.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/gplcver.rb b/Library/Formula/gplcver.rb index 554ca012c..ba8157bba 100644 --- a/Library/Formula/gplcver.rb +++ b/Library/Formula/gplcver.rb @@ -1,8 +1,8 @@ require 'formula' class Gplcver < Formula - url 'http://sourceforge.net/projects/gplcver/files/gplcver/2.12a/gplcver-2.12a.src.tar.bz2' homepage 'http://gplcver.sourceforge.net/' + url 'http://sourceforge.net/projects/gplcver/files/gplcver/2.12a/gplcver-2.12a.src.tar.bz2' md5 '857a15a9ebc8ef63ece01502509cbeb7' def install @@ -11,7 +11,9 @@ class Gplcver < Formula s.change_make_var! 'CFLAGS', "$(INCS) $(OPTFLGS) #{ENV.cflags}" end - system "cd src ; make -f makefile.osx ; cd .." + cd 'src' do + system "make -f makefile.osx" + end bin.install 'bin/cver' end end |
