use make from path

master
Adam Vandenberg 2012-03-20 22:30:24 -07:00
parent d2a0c4a2d3
commit c0c0374d0a
3 changed files with 7 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -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