blob: 075fcd4953b4de06323d11a2c8a6e8ef0b74409d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Libmetalink < Formula
homepage 'https://launchpad.net/libmetalink/'
url 'https://launchpad.net/libmetalink/trunk/packagingfix/+download/libmetalink-0.1.2.tar.bz2'
sha1 'fcc8c7960758c040b8b5f225efeb3f22bff14e40'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|