homebrew-core/Formula/geoserver.rb

44 lines
1.3 KiB
Ruby

class Geoserver < Formula
desc "Java server to share and edit geospatial data"
homepage "https://geoserver.org/"
url "https://downloads.sourceforge.net/project/geoserver/GeoServer/2.21.2/geoserver-2.21.2-bin.zip"
sha256 "44bf5ae803ba6570fc3575a1e3dc3070d77e5b936ed8fa65f1d684491e265280"
# GeoServer releases contain a large number of files for each version, so the
# SourceForge RSS feed may only contain the most recent version (which may
# have a different major/minor version than the latest stable). We check the
# "GeoServer" directory page instead, since this is reliable.
livecheck do
url "https://sourceforge.net/projects/geoserver/files/GeoServer/"
strategy :page_match
regex(%r{href=(?:["']|.*?GeoServer/)?v?(\d+(?:\.\d+)+)/?["' >]}i)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "d95a208a4e943b170c0cb1e8a1116349816364638e02a663031ca939bd15ebb4"
end
def install
libexec.install Dir["*"]
(bin/"geoserver").write <<~EOS
#!/bin/sh
if [ -z "$1" ]; then
echo "Usage: $ geoserver path/to/data/dir"
else
cd "#{libexec}" && java -DGEOSERVER_DATA_DIR=$1 -jar start.jar
fi
EOS
end
def caveats
<<~EOS
To start geoserver:
geoserver path/to/data/dir
EOS
end
test do
assert_match "geoserver path", shell_output("#{bin}/geoserver")
end
end