blob: 13fc0fdbb50c6f0603131753188c7a45244a142d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Faac < Formula
homepage 'http://www.audiocoding.com/faac.html'
url 'https://downloads.sourceforge.net/project/faac/faac-src/faac-1.28/faac-1.28.tar.gz'
sha1 'd00b023a3642f81bb1fb13d962a65079121396ee'
bottle do
cellar :any
revision 1
sha1 "46a8facbfd103d787d198e6fb802d6f0948222e0" => :yosemite
sha1 "2a1e8a1decd52fcdf6498edd7f8437536d05d453" => :mavericks
sha1 "9ea199f750c83887bb9e3d66759a60872672865f" => :mountain_lion
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|