homebrew-core/Formula/cpl.rb

46 lines
1.5 KiB
Ruby
Raw Normal View History

2019-07-01 03:10:49 +00:00
class Cpl < Formula
desc "ISO-C libraries for developing astronomical data-reduction tasks"
homepage "https://www.eso.org/sci/software/cpl/index.html"
url "ftp://ftp.eso.org/pub/dfs/pipelines/libraries/cpl/cpl-7.1.2.tar.gz"
sha256 "b6d20752420e2333e86d9a08c24a08057351a9fef97c32f5894e63fbfece463a"
revision 1
2019-07-01 03:10:49 +00:00
2019-07-16 23:18:21 +00:00
bottle do
cellar :any
2019-07-18 22:27:00 +00:00
sha256 "bfb20baa3483ad598490b108a371618ab18dbd6925194829c06fb8979b91d352" => :mojave
sha256 "2a2647bae1b99c1158b52ee220ccd3705d487efaf9978a3f60e57d48c8b1a6fe" => :high_sierra
sha256 "204ca58175cd8afd0ce0419bd9e82afcdba625772c97cd1142c438cddb3dd867" => :sierra
2019-07-16 23:18:21 +00:00
end
2019-07-01 03:10:49 +00:00
depends_on "cfitsio"
depends_on "fftw"
depends_on "wcslib"
conflicts_with "gdal", :because => "both install cpl_error.h"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--with-cfitsio=#{Formula["cfitsio"].prefix}",
"--with-fftw=#{Formula["fftw"].prefix}",
"--with-wcslib=#{Formula["wcslib"].prefix}"
system "make", "install"
end
test do
(testpath/"test.c").write <<~EOF
#include <cpl.h>
int main(){
cpl_init(CPL_INIT_DEFAULT);
cpl_msg_info("hello()", "Hello, world!");
cpl_end();
return 0;
}
EOF
system ENV.cc, "test.c", "-L#{lib}", "-I#{include}", "-lcplcore", "-lcext", "-o", "test"
system "./test"
end
end