diff options
| author | David Höppner | 2009-10-09 19:54:23 +0200 |
|---|---|---|
| committer | Max Howell | 2009-10-12 23:01:13 +0100 |
| commit | 699af63d4bc780db3ff8687399ae648dcd76e7c3 (patch) | |
| tree | 9c036e75156499f0e299bd27398621525bf6591e /Library/Formula/libcdio.rb | |
| parent | 0e326adb065d264361f14dfee8cfa0dc18c3838a (diff) | |
| download | homebrew-699af63d4bc780db3ff8687399ae648dcd76e7c3.tar.bz2 | |
Libcdio formula
The GNU Compact Disc Input and Control library (libcdio) contains a
library for CD-ROM and CD image access. Applications wishing to be
oblivious of the OS- and device-dependent properties of a CD-ROM or
of the specific details of various CD-image formats may benefit from
using this library.
Diffstat (limited to 'Library/Formula/libcdio.rb')
| -rw-r--r-- | Library/Formula/libcdio.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libcdio.rb b/Library/Formula/libcdio.rb new file mode 100644 index 000000000..1daa590a4 --- /dev/null +++ b/Library/Formula/libcdio.rb @@ -0,0 +1,12 @@ +require 'brewkit' + +class Libcdio <Formula + url 'http://ftp.gnu.org/gnu/libcdio/libcdio-0.81.tar.gz' + md5 '2ad1622b672ccf53a3444a0c55724d38' + homepage 'http://www.gnu.org/software/libcdio/' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
