2012-06-18 13:16:57 +00:00
|
|
|
class Geoserver < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Java server to share and edit geospatial data"
|
2015-07-03 23:21:08 +00:00
|
|
|
homepage "http://geoserver.org/"
|
2015-12-25 00:49:01 +00:00
|
|
|
url "https://downloads.sourceforge.net/project/geoserver/GeoServer/2.8.1/geoserver-2.8.1-bin.zip"
|
|
|
|
sha256 "c0d0a821a6997cad7c604cc466355fa63df296d64045ebd9ac796b74631ffd90"
|
2012-06-18 13:16:57 +00:00
|
|
|
|
2015-10-22 13:36:19 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2012-06-18 13:16:57 +00:00
|
|
|
def install
|
2015-07-03 23:21:08 +00:00
|
|
|
libexec.install Dir["*"]
|
|
|
|
(bin/"geoserver").write <<-EOS.undent
|
2012-06-18 13:16:57 +00:00
|
|
|
#!/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.undent
|
2013-02-01 00:03:20 +00:00
|
|
|
To start geoserver:
|
|
|
|
geoserver path/to/data/dir
|
2012-06-18 13:16:57 +00:00
|
|
|
EOS
|
|
|
|
end
|
2015-07-03 23:21:08 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
assert_match /geoserver path/, shell_output("#{bin}/geoserver")
|
|
|
|
end
|
2012-06-18 13:16:57 +00:00
|
|
|
end
|