homebrew-core/Formula/libcddb.rb

16 lines
400 B
Ruby

require 'formula'
class Libcddb < Formula
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