homebrew-core/Formula/libcddb.rb
2010-09-09 14:25:57 -07:00

15 lines
380 B
Ruby

require 'formula'
class Libcddb <Formula
url 'http://downloads.sourceforge.net/libcddb/libcddb-1.3.2.tar.bz2'
md5 '8bb4a6f542197e8e9648ae597cd6bc8a'
homepage 'http://libcddb.sourceforge.net/'
depends_on 'pkg-config'
depends_on 'libcdio'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end