blob: 58c5d1d9395a0d922dfb4c9be29092e1eb240f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require "formula"
class Libaacs < Formula
homepage "https://www.videolan.org/developers/libaacs.html"
url "ftp://ftp.videolan.org/pub/videolan/libaacs/0.7.1/libaacs-0.7.1.tar.bz2"
mirror "http://videolan-nyc.defaultroute.com/libaacs/0.7.1/libaacs-0.7.1.tar.bz2"
sha1 "09eb61bcfceca77cd779c4475093dd22a0cb5510"
bottle do
cellar :any
revision 1
sha1 "4835b5d14f3c078e60a1149648b6788ca49f523b" => :yosemite
sha1 "9352defc959c0587e4eaaab4f93e777139cdc964" => :mavericks
sha1 "69c286aeceb83e3e602872e03bc9eef3882c6631" => :mountain_lion
end
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
|