Libcddb formula
Libcddb is a C library to access data on a CDDB server.
This commit is contained in:
parent
f492148c3b
commit
764513a727
1 changed files with 15 additions and 0 deletions
15
Formula/libcddb.rb
Normal file
15
Formula/libcddb.rb
Normal file
|
@ -0,0 +1,15 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Libcddb <Formula
|
||||
url 'http://prdownloads.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
|
Loading…
Reference in a new issue