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/"
|
|
|
|
url "https://downloads.sourceforge.net/project/geoserver/GeoServer/2.7.1.1/geoserver-2.7.1.1-bin.zip"
|
|
|
|
sha256 "4c584ae1e586736533e3a4bd9969eb0d180ec683cf79f2aff8512075b742da60"
|
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
|
|
|
|
2013-02-01 00:03:20 +00:00
|
|
|
See the Geoserver homepage for more setup information:
|
|
|
|
brew home geoserver
|
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
|