48 lines
1.7 KiB
Ruby
48 lines
1.7 KiB
Ruby
class SimpleTiles < Formula
|
|
desc "Image generation library for spatial data"
|
|
homepage "https://github.com/propublica/simple-tiles"
|
|
url "https://github.com/propublica/simple-tiles/archive/v0.6.1.tar.gz"
|
|
sha256 "2391b2f727855de28adfea9fc95d8c7cbaca63c5b86c7286990d8cbbcd640d6f"
|
|
license "MIT"
|
|
revision 11
|
|
head "https://github.com/propublica/simple-tiles.git"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "69b3202a2133624649d9bdeaf11a948a3868f388162f3fa45e876b29fe9a6818"
|
|
sha256 cellar: :any, big_sur: "fe498ae4895ef92fe4bbe9089bbb1286687bd71c5328465862bcf1c34edda0e0"
|
|
sha256 cellar: :any, catalina: "b0dd435ef5d6b254f681809018fd650004c1b59ef76cbf3d3a6eaffe255947ba"
|
|
sha256 cellar: :any, mojave: "2d1e85dde8f09ec695679fba96a38e2494b2ddc21462ad463b689fd63e98c61a"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "cairo"
|
|
depends_on "gdal"
|
|
depends_on "pango"
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <simple-tiles/simple_tiles.h>
|
|
|
|
int main(){
|
|
simplet_map_t *map = simplet_map_new();
|
|
simplet_map_free(map);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "-I#{include}", "-L#{lib}", "-lsimple-tiles",
|
|
"-I#{Formula["cairo"].opt_include}/cairo",
|
|
"-I#{Formula["gdal"].opt_include}",
|
|
"-I#{Formula["glib"].opt_include}/glib-2.0",
|
|
"-I#{Formula["glib"].opt_lib}/glib-2.0/include",
|
|
"-I#{Formula["harfbuzz"].opt_include}/harfbuzz",
|
|
"-I#{Formula["pango"].opt_include}/pango-1.0",
|
|
"test.c", "-o", "test"
|
|
system testpath/"test"
|
|
end
|
|
end
|