diff options
| author | Adam Vandenberg | 2012-03-09 21:41:20 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-09 21:41:35 -0800 |
| commit | e9bd42c85aa79735e75440aa4535943d1c7281a8 (patch) | |
| tree | 6b23572fe092736a36cd661443ffc9c8e9a87dd8 /Library/Formula | |
| parent | 72a477f2734939d4c5805247588c4cdea69b5383 (diff) | |
| download | homebrew-e9bd42c85aa79735e75440aa4535943d1c7281a8.tar.bz2 | |
gplcver: style nit-picks
Diffstat (limited to 'Library/Formula')
| -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 |
