69 lines
1.9 KiB
Ruby
69 lines
1.9 KiB
Ruby
class Libass < Formula
|
|
desc "Subtitle renderer for the ASS/SSA subtitle format"
|
|
homepage "https://github.com/libass/libass"
|
|
url "https://github.com/libass/libass/releases/download/0.15.0/libass-0.15.0.tar.xz"
|
|
sha256 "9f09230c9a0aa68ef7aa6a9e2ab709ca957020f842e52c5b2e52b801a7d9e833"
|
|
license "ISC"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "427b18a8c9c8c5331553c0e814bf4e4c6f965cc53715d89a0ad3ba66b8e231c4" => :catalina
|
|
sha256 "64f2a67f35510fe088f3e6e18075d5e08e93081d958fcee6b65ee29ab3b730ad" => :mojave
|
|
sha256 "881db49f437027abdae60f4c849097b720216bcfa197589aea373b5f3451f9ef" => :high_sierra
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/libass/libass.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "nasm" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "freetype"
|
|
depends_on "fribidi"
|
|
depends_on "harfbuzz"
|
|
|
|
on_linux do
|
|
depends_on "fontconfig"
|
|
end
|
|
|
|
def install
|
|
system "autoreconf", "-i" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-fontconfig"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include "ass/ass.h"
|
|
int main() {
|
|
ASS_Library *library;
|
|
ASS_Renderer *renderer;
|
|
library = ass_library_init();
|
|
if (library) {
|
|
renderer = ass_renderer_init(library);
|
|
if (renderer) {
|
|
ass_renderer_done(renderer);
|
|
ass_library_done(library);
|
|
return 0;
|
|
}
|
|
else {
|
|
ass_library_done(library);
|
|
return 1;
|
|
}
|
|
}
|
|
else {
|
|
return 1;
|
|
}
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.cpp", "-I#{include}", "-L#{lib}", "-lass", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|