2010-09-17 19:39:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bagit < Formula
|
2012-01-17 15:59:17 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/loc-xferutils/loc-bil-java-library/4.0/bagit-4.0-bin.zip'
|
2010-09-17 19:39:43 +00:00
|
|
|
homepage 'http://sourceforge.net/project/loc-xferutils'
|
2012-01-17 15:59:17 +00:00
|
|
|
md5 '956734479af87fe6d8545032d8b8b12e'
|
2010-09-17 19:39:43 +00:00
|
|
|
|
|
|
|
skip_clean 'logs'
|
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install %w{ LICENSE.txt README.txt conf logs}
|
|
|
|
libexec.install Dir['lib/*']
|
|
|
|
inreplace "bin/bag", "$APP_HOME/lib", "$APP_HOME/libexec"
|
|
|
|
inreplace "bin/bag.classworlds.conf", "${app.home}/lib", "${app.home}/libexec"
|
|
|
|
rm "bin/bag.bat"
|
|
|
|
bin.install Dir['bin/*']
|
|
|
|
end
|
|
|
|
end
|