59 lines
1.9 KiB
Ruby
59 lines
1.9 KiB
Ruby
class Libvorbis < Formula
|
|
desc "Vorbis General Audio Compression Codec"
|
|
homepage "https://xiph.org/vorbis/"
|
|
url "https://downloads.xiph.org/releases/vorbis/libvorbis-1.3.7.tar.xz"
|
|
sha256 "b33cc4934322bcbf6efcbacf49e3ca01aadbea4114ec9589d1b1e9d20f72954b"
|
|
license "BSD-3-Clause"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "432eb21045d9dfac3ef879648d845d894cc828862f5498448fe98c0141ef5cd0" => :catalina
|
|
sha256 "59509a351e88352f01512b54cc5cb849c2551623f7d6dcd6679d38b5e96032ed" => :mojave
|
|
sha256 "3e6609520d0ffd7179f721c23c1291f2735b70384d56d1c1dd10185ae355c4b2" => :high_sierra
|
|
end
|
|
|
|
head do
|
|
url "https://gitlab.xiph.org/xiph/vorbis.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libogg"
|
|
|
|
resource("oggfile") do
|
|
url "https://upload.wikimedia.org/wikipedia/commons/c/c8/Example.ogg"
|
|
sha256 "379071af4fa77bc7dacf892ad81d3f92040a628367d34a451a2cdcc997ef27b0"
|
|
end
|
|
|
|
def install
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include "vorbis/vorbisfile.h"
|
|
int main (void) {
|
|
OggVorbis_File vf;
|
|
assert (ov_open_callbacks (stdin, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) >= 0);
|
|
vorbis_info *vi = ov_info (&vf, -1);
|
|
printf("Bitstream is %d channel, %ldHz\\n", vi->channels, vi->rate);
|
|
printf("Encoded by: %s\\n", ov_comment(&vf,-1)->vendor);
|
|
return 0;
|
|
}
|
|
EOS
|
|
testpath.install resource("oggfile")
|
|
system ENV.cc, "test.c", "-I#{include}", "-L#{lib}", "-lvorbisfile",
|
|
"-o", "test"
|
|
assert_match "2 channel, 44100Hz\nEncoded by: Xiph.Org libVorbis",
|
|
shell_output("./test < Example.ogg")
|
|
end
|
|
end
|