29 lines
760 B
Ruby
29 lines
760 B
Ruby
require 'formula'
|
|
|
|
class Osmosis < Formula
|
|
url 'http://bretth.dev.openstreetmap.org/osmosis-build/osmosis-0.38.zip'
|
|
homepage 'http://wiki.openstreetmap.org/wiki/Osmosis'
|
|
md5 'e0d48f644485578625482f5e660b2358'
|
|
|
|
def patches
|
|
# need to adjust home dir for a clean install
|
|
DATA
|
|
end
|
|
|
|
def install
|
|
bin.install Dir['bin/osmosis']
|
|
%w(lib config script).each { |d| libexec.install d }
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- a/bin/osmosis 2010-11-16 06:58:44.000000000 +0100
|
|
+++ b/bin/osmosis 2010-11-23 12:13:01.000000000 +0100
|
|
@@ -83,6 +83,7 @@
|
|
saveddir=`pwd`
|
|
MYAPP_HOME=`dirname "$PRG"`/..
|
|
MYAPP_HOME=`cd "$MYAPP_HOME" && pwd`
|
|
+MYAPP_HOME="$MYAPP_HOME/libexec"
|
|
cd "$saveddir"
|
|
|
|
# Build up the classpath of required jar files via classworlds launcher.
|