2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-09 17:54:23 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libcdio < Formula
|
2009-10-09 17:54:23 +00:00
|
|
|
homepage 'http://www.gnu.org/software/libcdio/'
|
2012-11-26 23:03:49 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libcdio/libcdio-0.90.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/libcdio/libcdio-0.90.tar.gz'
|
|
|
|
sha1 '68121536111f9ccf0b42fc1ef79abaa6f91b8299'
|
2009-10-09 17:54:23 +00:00
|
|
|
|
2011-03-22 18:17:30 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
|
2009-10-09 17:54:23 +00:00
|
|
|
def install
|
2011-03-22 18:17:30 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2009-10-09 17:54:23 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|