homebrew-core/Formula/libmetalink.rb
Ant Bryan dc2a630fe2 libmetalink 0.1.1
Closes Homebrew/homebrew#14484.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-27 10:53:29 -07:00

15 lines
441 B
Ruby

require 'formula'
class Libmetalink < Formula
homepage 'https://launchpad.net/libmetalink/'
url 'https://launchpad.net/libmetalink/trunk/libmetalink-0.1.1/+download/libmetalink-0.1.1.tar.bz2'
sha1 '261b9c5ec63f62c7dfa5a84fc280858005b14e20'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end