45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
class LibxmpLite < Formula
|
|
desc "Lite libxmp"
|
|
homepage "https://xmp.sourceforge.io"
|
|
url "https://downloads.sourceforge.net/project/xmp/libxmp/4.4.1/libxmp-lite-4.4.1.tar.gz"
|
|
sha256 "bce9cbdaa19234e08e62660c19ed9a190134262066e7f8c323ea8ad2ac20dc39"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "a155be151ab2b536aae7aa7cb44999b8e1dc5a210b06af6f18265eb4037fd6ab" => :catalina
|
|
sha256 "d1956ebfe2812cededb97f6717925f21ca1a71dbd8b4211792369cb0a9f3c74f" => :mojave
|
|
sha256 "e0b20b3d4fcd64e4c90b9d704ee5621739bf633bdf8bd71bd1b2cb713a2b0284" => :high_sierra
|
|
sha256 "d1ed5c1803f622508c3e20bb9c48f9bc644d0d639574aaa298724dd0aa17262d" => :sierra
|
|
sha256 "a8fcd7a5ab446a221b7444b90191656175f6060a0730a703e4f862c4f49690f4" => :el_capitan
|
|
sha256 "448d0a4bcd651c44551a1d3785de1c0181cce1ee374cd7903a629cb200a3011d" => :yosemite
|
|
end
|
|
|
|
# Remove for > 4.4.1
|
|
# Fix build failure "dyld: Symbol not found: _it_loader"
|
|
# Upstream commit "libxmp-lite building (wrong format loaders)"
|
|
# Already in master. Original PR 6 Nov 2016 https://github.com/cmatsuoka/libxmp/pull/82
|
|
patch :p2 do
|
|
url "https://github.com/cmatsuoka/libxmp/commit/a028835.patch?full_index=1"
|
|
sha256 "74b8689dcc23943168c6ae6afbda94dbcca78d08caae860b31ff573610ec5f92"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~'EOS'
|
|
#include <stdio.h>
|
|
#include <libxmp-lite/xmp.h>
|
|
|
|
int main(int argc, char* argv[]){
|
|
printf("libxmp-lite %s/%c%u\n", XMP_VERSION, *xmp_version, xmp_vercode);
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system ENV.cc, "-I", include, "-L", lib, "-L#{lib}", "-lxmp-lite", "test.c", "-o", "test"
|
|
system "#{testpath}/test"
|
|
end
|
|
end
|