Use quoted, comma-separated "system" calls.
parent
8bcc26df85
commit
c36b748ca3
|
@ -11,7 +11,8 @@ class VorbisTools <Formula
|
||||||
#depends_on 'ogg123' => :optional
|
#depends_on 'ogg123' => :optional
|
||||||
|
|
||||||
def install
|
def install
|
||||||
system "./configure --disable-debug --disable-nls --disable-dependency-tracking --prefix='#{prefix}'"
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||||
|
"--disable-nls", "--prefix=#{prefix}"
|
||||||
# wtf?!
|
# wtf?!
|
||||||
inreplace 'ogg123/Makefile', '-arch ppc ppc64 i386 x86_64', '-arch i386'
|
inreplace 'ogg123/Makefile', '-arch ppc ppc64 i386 x86_64', '-arch i386'
|
||||||
system "make install"
|
system "make install"
|
||||||
|
|
|
@ -10,7 +10,7 @@ class XmlrpcC <Formula
|
||||||
# choosing --enable-libxml2-backend to lose some weight and not statically
|
# choosing --enable-libxml2-backend to lose some weight and not statically
|
||||||
# link in expat
|
# link in expat
|
||||||
#NOTE seemingly it isn't possible to build dylibs with this thing
|
#NOTE seemingly it isn't possible to build dylibs with this thing
|
||||||
system "./configure --disable-debug --enable-libxml2-backend --prefix='#{prefix}'"
|
system "./configure", "--disable-debug", "--enable-libxml2-backend", "--prefix=#{prefix}"
|
||||||
system "make install"
|
system "make install"
|
||||||
end
|
end
|
||||||
end
|
end
|
|
@ -12,7 +12,7 @@ class Yajl <Formula
|
||||||
def install
|
def install
|
||||||
ENV.deparallelize
|
ENV.deparallelize
|
||||||
|
|
||||||
system "./configure --prefix '#{prefix}'"
|
system "./configure", "--prefix#{prefix}"
|
||||||
system "make install"
|
system "make install"
|
||||||
end
|
end
|
||||||
end
|
end
|
Loading…
Reference in New Issue