49 lines
1.6 KiB
Ruby
49 lines
1.6 KiB
Ruby
class Libspectre < Formula
|
|
desc "Small library for rendering Postscript documents"
|
|
homepage "https://wiki.freedesktop.org/www/Software/libspectre/"
|
|
url "https://libspectre.freedesktop.org/releases/libspectre-0.2.8.tar.gz"
|
|
sha256 "65256af389823bbc4ee4d25bfd1cc19023ffc29ae9f9677f2d200fa6e98bc7a8"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "fc0831751eeba07281ec242ff179bc31e7088cad96eb92b34316b2150ba3c265" => :sierra
|
|
sha256 "ca9a644dd04a6107d728920eb65dacda9e61a4f6d04cd13f3d1af98874c548da" => :el_capitan
|
|
sha256 "481d37c21673c69a1040aa85f3fca97823fe57c666a6c84d3e220436ab0aa849" => :yosemite
|
|
end
|
|
|
|
depends_on "ghostscript"
|
|
|
|
patch do
|
|
url "https://github.com/Homebrew/formula-patches/raw/master/libspectre/libspectre-0.2.7-gs918.patch"
|
|
sha256 "e4c186ddc6cebc92ee0aee24bc79c7f5fff147a0c0d9cadf7ebdc3906d44711c"
|
|
end
|
|
|
|
def install
|
|
ENV.append "CFLAGS", "-I#{Formula["ghostscript"].opt_include}/ghostscript"
|
|
ENV.append "LIBS", "-L#{Formula["ghostscript"].opt_lib}"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <libspectre/spectre.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
const char *text = spectre_status_to_string(SPECTRE_STATUS_SUCCESS);
|
|
return 0;
|
|
}
|
|
EOS
|
|
flags = %W[
|
|
-I#{include}
|
|
-L#{lib}
|
|
-lspectre
|
|
]
|
|
system ENV.cc, "test.c", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|