libwpd 0.9.2
`make` and `make install` need to be run separately. Installation also needs to be serialized. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
1fcea61551
commit
f7be83ab63
1 changed files with 6 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
require 'formula'
|
||||
|
||||
class Libwpd < Formula
|
||||
url 'http://downloads.sourceforge.net/libwpd/libwpd-0.9.0.tar.bz2'
|
||||
md5 '86e390f015e505dd71a66f0123c62f09'
|
||||
url 'http://downloads.sourceforge.net/libwpd/libwpd-0.9.2.tar.bz2'
|
||||
md5 '8d265a592619166f29c4672ea54812b7'
|
||||
homepage 'http://libwpd.sourceforge.net/'
|
||||
|
||||
depends_on "glib"
|
||||
|
@ -10,6 +10,10 @@ class Libwpd < Formula
|
|||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make"
|
||||
|
||||
# Needs a serialized install
|
||||
ENV.deparallelize
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue