46 lines
1.8 KiB
Ruby
46 lines
1.8 KiB
Ruby
class Libquicktime < Formula
|
|
desc "Library for reading and writing quicktime files"
|
|
homepage "https://libquicktime.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz"
|
|
sha256 "1c53359c33b31347b4d7b00d3611463fe5e942cae3ec0fefe0d2fd413fd47368"
|
|
revision 5
|
|
|
|
bottle do
|
|
sha256 "33d7a1146846e30e48e637ddd64f3e7541728df03becf8175e798a8fd3eb3bab" => :catalina
|
|
sha256 "56165e3b70f7e444bca93369b3fa4602eefb1aa4b9624ed1ecbaa4741eb7c245" => :mojave
|
|
sha256 "df1b207f23b3edc587629a0fd700a446d4f8210e6a7de3bbfd3d5c122cef16f7" => :high_sierra
|
|
sha256 "1770ac237a79cb0d9ae918e4bcd6d92bcca6a6695823f7a3fde6dde7d3077acb" => :sierra
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gettext"
|
|
|
|
# Fix CVE-2016-2399. Applied upstream on March 6th 2017.
|
|
# Also, fixes from upstream for CVE-2017-9122 through CVE-2017-9128, applied
|
|
# by Debian since 30 Jun 2017.
|
|
patch do
|
|
url "https://deb.debian.org/debian/pool/main/libq/libquicktime/libquicktime_1.2.4-12.debian.tar.xz"
|
|
sha256 "e5b5fa3ec8391b92554d04528568d04ea9eb5145835e0c246eac7961c891a91a"
|
|
apply "patches/CVE-2016-2399.patch"
|
|
apply "patches/CVE-2017-9122_et_al.patch"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--enable-gpl",
|
|
"--without-doxygen",
|
|
"--without-gtk",
|
|
"--without-x"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
fixture = test_fixtures("test.m4a")
|
|
output = shell_output("#{bin}/qtinfo #{fixture} 2>&1")
|
|
assert_match "length 1536 samples, compressor mp4a", output
|
|
assert_predicate testpath/".libquicktime_codecs", :exist?
|
|
end
|
|
end
|