homebrew-core/Formula/libcue.rb
Nibbles 2bits 04e00fd67e libcue 1.4.0
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>
2011-10-06 16:02:05 -05:00

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