b4ba60a9af
Upgrade libcdio to version 0.83. Remove the caveat because it works on SL 10.6.8. Tested on Lion with clang and llvm from XCode-4.3.3. Tested on SL with clang, llvm, gcc from XCode-4.0.2. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
434 B
Ruby
15 lines
434 B
Ruby
require 'formula'
|
|
|
|
class Libcdio < Formula
|
|
homepage 'http://www.gnu.org/software/libcdio/'
|
|
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'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|