blob: 36cbd07b3cc7527ce22ad552164d461e165d1d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Libxmp < Formula
homepage 'http://xmp.sourceforge.net'
url 'http://downloads.sourceforge.net/project/xmp/libxmp/4.1.5/libxmp-4.1.5.tar.gz'
sha1 'f50ff6d98e9c21c8fb5e29a8c9e5677983285d90'
head do
url 'git://git.code.sf.net/p/xmp/libxmp'
depends_on :autoconf
end
def install
system "autoconf" if build.head?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|