aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMisty De Meo2013-05-22 10:03:09 -0500
committerMisty De Meo2013-05-22 10:03:22 -0500
commitcccba0ee00479c157bf1934c4857b7da20df7134 (patch)
tree66d60abf5700610703eaf509e44b00aea964e646 /Library/Formula
parent9bcc03b5132d5195e13d988d955da59ebaa5e914 (diff)
downloadhomebrew-cccba0ee00479c157bf1934c4857b7da20df7134.tar.bz2
xmp 4.0.6
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xmp.rb16
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"