98bb0d77bd
Closes Homebrew/homebrew#26171. Signed-off-by: Brett Koonce <koonce@gmail.com>
25 lines
656 B
Ruby
25 lines
656 B
Ruby
require 'formula'
|
|
|
|
class Libaacs < Formula
|
|
homepage 'http://www.videolan.org/developers/libaacs.html'
|
|
url 'ftp://ftp.videolan.org/pub/videolan/libaacs/0.7.0/libaacs-0.7.0.tar.bz2'
|
|
sha1 '461c0a6f143519cd6b24bf4be5e2672219b44780'
|
|
|
|
head do
|
|
url 'git://git.videolan.org/libaacs.git'
|
|
|
|
depends_on :autoconf => :build
|
|
depends_on :automake => :build
|
|
depends_on :libtool => :build
|
|
end
|
|
|
|
depends_on 'bison' => :build
|
|
depends_on 'libgcrypt'
|
|
|
|
def install
|
|
system './bootstrap' if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|