diff options
| -rw-r--r-- | Library/Formula/aplus.rb | 9 | ||||
| -rw-r--r-- | Library/Formula/blahtexml.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/mongoose.rb | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/Library/Formula/aplus.rb b/Library/Formula/aplus.rb index 09d25be93..72c477e5b 100644 --- a/Library/Formula/aplus.rb +++ b/Library/Formula/aplus.rb @@ -1,9 +1,9 @@ require 'formula' class Aplus < Formula + homepage 'http://www.aplusdev.org/' url 'http://mirrors.kernel.org/debian/pool/main/a/aplus-fsf/aplus-fsf_4.22.1.orig.tar.gz' mirror 'http://ftp.us.debian.org/debian/pool/main/a/aplus-fsf/aplus-fsf_4.22.1.orig.tar.gz' - homepage 'http://www.aplusdev.org/' md5 'c45df4f3e816d7fe957deed9b81f66c3' # Fix the missing CoreServices include (via Fink version of aplus) @@ -28,10 +28,9 @@ class Aplus < Formula system "autoconf" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "/usr/bin/make" - # make install breaks with -j option - ENV.j1 - system "/usr/bin/make", "install" + system "make" + ENV.j1 # make install breaks with -j option + system "make", "install" end def caveats diff --git a/Library/Formula/blahtexml.rb b/Library/Formula/blahtexml.rb index 75ba3ca80..8623977a0 100644 --- a/Library/Formula/blahtexml.rb +++ b/Library/Formula/blahtexml.rb @@ -8,7 +8,7 @@ class Blahtexml < Formula depends_on 'xerces-c' def install - system "/usr/bin/make blahtex-mac blahtexml-mac" + system "make blahtex-mac blahtexml-mac" bin.install 'blahtex', 'blahtexml' end end diff --git a/Library/Formula/mongoose.rb b/Library/Formula/mongoose.rb index fdf94b4c8..eb65d7f93 100644 --- a/Library/Formula/mongoose.rb +++ b/Library/Formula/mongoose.rb @@ -1,12 +1,12 @@ require 'formula' class Mongoose < Formula - url 'http://mongoose.googlecode.com/files/mongoose-2.11.tgz' homepage 'http://code.google.com/p/mongoose/' + url 'http://mongoose.googlecode.com/files/mongoose-2.11.tgz' md5 'f6985da7513d354cc18b21b7670d23c1' def install - system "/usr/bin/make mac" + system "make mac" bin.install "mongoose" man1.install "mongoose.1" end |
