homebrew-core/Formula/libmetalink.rb

24 lines
687 B
Ruby

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'
bottle do
cellar :any
revision 1
sha1 "0fd4cd6106168e23a2ce691bcc3db3afaef44001" => :yosemite
sha1 "3cbcf570dd17a7c617da687d1d90b20d03e9e299" => :mavericks
sha1 "ceeab999a4e6b19c7859ffc8e4d0319cd365cb48" => :mountain_lion
end
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end