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-07-14 20:49:02 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libcdio/libcdio-0.83.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/libcdio/libcdio-0.83.tar.gz'
|
|
|
|
sha1 '43f55972b23fd196d15fd6db17354a1d28e2bb24'
|
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
|