Move homebrew (#933)

The new HomeBrew is now in https://github.com/maplibre/homebrew-martin

cc: @rubenpoppe
This commit is contained in:
Yuri Astrakhan 2023-10-11 21:56:37 -04:00 committed by GitHub
parent 58d691dd10
commit cb7c49b706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 37 deletions

View File

@ -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

View File

@ -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