homebrew-core/Formula/libxmp.rb

19 lines
441 B
Ruby
Raw Normal View History

2013-02-16 07:45:34 +00:00
require 'formula'
class Libxmp < Formula
homepage 'http://xmp.sourceforge.net'
2014-04-13 19:05:17 +00:00
url 'https://downloads.sourceforge.net/project/xmp/libxmp/4.2.7/libxmp-4.2.7.tar.gz'
sha1 'cc7b1340bd8664d933311d23550ae4279abf2ecc'
2013-02-16 07:45:34 +00:00
2013-09-22 01:47:24 +00:00
head do
url 'git://git.code.sf.net/p/xmp/libxmp'
depends_on :autoconf
end
2013-02-16 07:45:34 +00:00
def install
system "autoconf" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end