diff options
| author | David Höppner | 2009-10-09 19:53:01 +0200 |
|---|---|---|
| committer | Max Howell | 2009-10-12 23:01:13 +0100 |
| commit | 0e326adb065d264361f14dfee8cfa0dc18c3838a (patch) | |
| tree | 37ccf04fb67bc5f9cf9f977d6684dbaff90e821b /Library/Formula/libcddb.rb | |
| parent | 5d916bd32c7f9fbc7346c247a8102b8b144cf96c (diff) | |
| download | homebrew-0e326adb065d264361f14dfee8cfa0dc18c3838a.tar.bz2 | |
Libcddb formula
Libcddb is a C library to access data on a CDDB server.
Diffstat (limited to 'Library/Formula/libcddb.rb')
| -rw-r--r-- | Library/Formula/libcddb.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/libcddb.rb b/Library/Formula/libcddb.rb new file mode 100644 index 000000000..950ec2b44 --- /dev/null +++ b/Library/Formula/libcddb.rb @@ -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 |
