From cb7c49b7064b1fd7f978b209039dae26e4032178 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 11 Oct 2023 21:56:37 -0400 Subject: [PATCH] Move homebrew (#933) The new HomeBrew is now in https://github.com/maplibre/homebrew-martin cc: @rubenpoppe --- HomebrewFormula/martin.rb | 34 ---------------------------------- README.md | 6 +++--- 2 files changed, 3 insertions(+), 37 deletions(-) delete mode 100644 HomebrewFormula/martin.rb diff --git a/HomebrewFormula/martin.rb b/HomebrewFormula/martin.rb deleted file mode 100644 index 3e08cacd..00000000 --- a/HomebrewFormula/martin.rb +++ /dev/null @@ -1,34 +0,0 @@ -class Martin < Formula - current_version="0.9.1" - - desc "Blazing fast and lightweight tile server with PostGIS, MBTiles, and PMTiles support, plus an mbtiles tool" - homepage "https://github.com/maplibre/martin" - - on_arm do - sha256 "00828eb3490664eba767323da98d2847238b65b7bea1e235267e43a67277d8e5" - url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-Darwin-aarch64.tar.gz" - end - on_intel do - sha256 "75b52bd89ba397267080e938dd261f57c1eabdaa1d27ac13bf4904031672a6e9" - url "https://github.com/maplibre/martin/releases/download/v#{current_version}/martin-Darwin-x86_64.tar.gz" - end - - version "#{current_version}" - - def install - bin.install "martin" - bin.install "mbtiles" - end - - def caveats; <<~EOS - Martin requires a database connection string. - It can be passed as a command-line argument or as a DATABASE_URL environment variable. - martin postgres://postgres@localhost/db - EOS - end - - test do - `#{bin}/martin --version` - `#{bin}/mbtiles --version` - end -end diff --git a/README.md b/README.md index b66c18be..50dd46fe 100755 --- a/README.md +++ b/README.md @@ -37,11 +37,11 @@ You can download martin from [GitHub releases page](https://github.com/maplibre/ [rl-macos-a64]: https://github.com/maplibre/martin/releases/latest/download/martin-Darwin-aarch64.tar.gz [rl-win64-zip]: https://github.com/maplibre/martin/releases/latest/download/martin-Windows-x86_64.zip -If you are using macOS and [Homebrew](https://brew.sh/) you can install martin using Homebrew tap. +If you are using macOS and [Homebrew](https://brew.sh/) you can install `martin` and `mbtiles` using Homebrew tap. ```shell -brew tap maplibre/martin https://github.com/maplibre/martin.git -brew install maplibre/martin/martin +brew tap maplibre/martin +brew install martin ``` ## Running Martin Service