homebrew-core/Formula/libcddb.rb

16 lines
400 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libcddb < Formula
2010-09-09 21:25:57 +00:00
url 'http://downloads.sourceforge.net/libcddb/libcddb-1.3.2.tar.bz2'
sha1 '2a7855918689692ff5ca3316d078a859d51959ce'
homepage 'http://libcddb.sourceforge.net/'
depends_on 'pkg-config' => :build
depends_on 'libcdio'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end