04e00fd67e
This will update libcue to version 1.4.0. No other changes here. It compiles with llvm-2335.9, gcc-4.2.1, and clang-2.0 from XCode 4.0.2 on x86_64 10.6.8 Snow Leopard. It builds native static and shared libraries. Closes Homebrew/homebrew#7990. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
12 lines
366 B
Ruby
12 lines
366 B
Ruby
require 'formula'
|
|
|
|
class Libcue < Formula
|
|
url 'http://downloads.sourceforge.net/project/libcue/libcue/1.4.0/libcue-1.4.0.tar.bz2'
|
|
homepage 'http://sourceforge.net/projects/libcue/'
|
|
sha1 '3fd31f2da7c0e3967d5f56363f3051a85a8fd50d'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|