51 lines
1.7 KiB
Ruby
51 lines
1.7 KiB
Ruby
class Flac < Formula
|
|
desc "Free lossless audio codec"
|
|
homepage "https://xiph.org/flac/"
|
|
url "https://downloads.xiph.org/releases/flac/flac-1.3.3.tar.xz"
|
|
sha256 "213e82bd716c9de6db2f98bcadbc4c24c7e2efe8c75939a1a84e28539c4e1748"
|
|
|
|
livecheck do
|
|
url "https://downloads.xiph.org/releases/flac/"
|
|
regex(/href=.*?flac[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any, arm64_big_sur: "0df3b501847bb370e70f11cd2758271048ad7caf9dd994e220bd2974fa162939"
|
|
sha256 cellar: :any, big_sur: "2fd6b2eac2d88c39022752992baf18f4fa0deb43c1b27c57dc9d2349562c9514"
|
|
sha256 cellar: :any, catalina: "3d33119f1e513ad58f20722e41498fc23315d756a834d8b346cee6842f45fea1"
|
|
sha256 cellar: :any, mojave: "ffadc5a1825acd43aee92ea2523a1b46b3c63820f5cf59f61ee2972571454755"
|
|
sha256 cellar: :any, high_sierra: "53562e93cd58b45d15fb5303938b1718298d69101a53612fd53075e881cbfc95"
|
|
end
|
|
|
|
head do
|
|
url "https://gitlab.xiph.org/xiph/flac.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libogg"
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-debug
|
|
--prefix=#{prefix}
|
|
--enable-static
|
|
]
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/flac", "--decode", "--force-raw", "--endian=little", "--sign=signed",
|
|
"--output-name=out.raw", test_fixtures("test.flac")
|
|
system "#{bin}/flac", "--endian=little", "--sign=signed", "--channels=1", "--bps=8",
|
|
"--sample-rate=8000", "--output-name=out.flac", "out.raw"
|
|
end
|
|
end
|