37 lines
1.2 KiB
Ruby
37 lines
1.2 KiB
Ruby
class Libbpg < Formula
|
|
desc "Image format meant to improve on JPEG quality and file size"
|
|
homepage "https://bellard.org/bpg/"
|
|
url "https://bellard.org/bpg/libbpg-0.9.8.tar.gz"
|
|
sha256 "c0788e23bdf1a7d36cb4424ccb2fae4c7789ac94949563c4ad0e2569d3bf0095"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "b040d31f8abd45f50f8ba634c97eb81a0ec89ecada773223b2ac362ddd20baff" => :high_sierra
|
|
sha256 "77ae8a79d99cae86c42e4eaad0cc240efe98425f58143c940a3525d29d7cb25c" => :sierra
|
|
sha256 "49027f81f126e8bdc24587d43b127815e3a53fafa92b6326c857526678932bef" => :el_capitan
|
|
end
|
|
|
|
option "with-jctvc", "Enable built-in JCTVC encoder - Mono threaded, slower but produce smaller file"
|
|
option "without-x265", "Disable built-in x265 encoder - Multi threaded, faster but produce bigger file"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "yasm" => :build if build.with? "x265"
|
|
depends_on "libpng"
|
|
depends_on "jpeg"
|
|
|
|
def install
|
|
bin.mkpath
|
|
|
|
args = []
|
|
args << "USE_JCTVC=y" if build.with? "jctvc"
|
|
args << "USE_X265=" if build.without? "x265"
|
|
|
|
system "make", "install", "prefix=#{prefix}", "CONFIG_APPLE=y", *args
|
|
|
|
pkgshare.install Dir["html/bpgdec*.js"]
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/bpgenc", test_fixtures("test.png")
|
|
end
|
|
end
|