aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-20 22:30:24 -0700
committerAdam Vandenberg2012-03-20 22:30:24 -0700
commit6373f320cd4aa9c23566e2ff9b29ef27c152e5c1 (patch)
treebf4c02684c5e8ad546a1010cfd12afe07bddcfef
parentf307c367d18f4455aa32f76059caa95cff4afbc6 (diff)
downloadhomebrew-6373f320cd4aa9c23566e2ff9b29ef27c152e5c1.tar.bz2
use make from path
-rw-r--r--Library/Formula/aplus.rb9
-rw-r--r--Library/Formula/blahtexml.rb2
-rw-r--r--Library/Formula/mongoose.rb4
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