diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/xmp.rb | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/Library/Formula/xmp.rb b/Library/Formula/xmp.rb index 786bec828..80b65687d 100644 --- a/Library/Formula/xmp.rb +++ b/Library/Formula/xmp.rb @@ -2,16 +2,24 @@ require 'formula' class Xmp < Formula homepage 'http://xmp.sourceforge.net' - url 'http://downloads.sourceforge.net/project/xmp/xmp/4.0.5/xmp-4.0.5.tar.gz' - sha1 '3de0292afc8c0e28b3f2f9328b28bc19d0fda9d1' + url 'http://downloads.sourceforge.net/project/xmp/xmp/4.0.6/xmp-4.0.6.tar.gz' + sha1 '61a7d68e4c37e7407bd35c783821bfbc2b639c87' head 'git://git.code.sf.net/p/xmp/xmp-cli' - depends_on :autoconf if build.head? + depends_on 'autoconf' if build.head? + depends_on 'automake' if build.head? + depends_on 'libtool' if build.head? depends_on 'pkg-config' => :build depends_on 'libxmp' def install - system "autoconf" if build.head? + if build.head? + system "glibtoolize" + system "aclocal" + system "autoconf" + system "automake", "--add-missing" + end + system "./configure", "--prefix=#{prefix}" system "make install" |
