2010-09-17 19:39:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bagit < Formula
|
2013-01-03 04:37:17 +00:00
|
|
|
homepage 'http://sourceforge.net/projects/loc-xferutils/files/loc-bil-java-library/4.4/'
|
2013-06-20 23:08:35 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/loc-xferutils/loc-bil-java-library/4.4/bagit-4.4-bin.zip'
|
2013-01-03 04:37:17 +00:00
|
|
|
sha1 '2ef049e2d53a0cbb8e9959a6e2433d82a2c0c11b'
|
2010-09-17 19:39:43 +00:00
|
|
|
|
|
|
|
skip_clean 'logs'
|
|
|
|
|
|
|
|
def install
|
2012-02-26 00:46:38 +00:00
|
|
|
prefix.install %w{conf logs}
|
2012-02-26 00:53:55 +00:00
|
|
|
|
2010-09-17 19:39:43 +00:00
|
|
|
libexec.install Dir['lib/*']
|
2012-02-26 00:53:55 +00:00
|
|
|
|
|
|
|
# Point to libexec, and move conf file
|
|
|
|
inreplace "bin/bag" do |s|
|
|
|
|
s.gsub! "$APP_HOME/lib", "$APP_HOME/libexec"
|
|
|
|
s.gsub! "/bin/$APP_NAME.classworlds.conf", "/conf/$APP_NAME.classworlds.conf"
|
|
|
|
end
|
2010-09-17 19:39:43 +00:00
|
|
|
inreplace "bin/bag.classworlds.conf", "${app.home}/lib", "${app.home}/libexec"
|
2012-02-26 00:53:55 +00:00
|
|
|
|
|
|
|
bin.install 'bin/bag'
|
|
|
|
(prefix+'conf').install 'bin/bag.classworlds.conf'
|
2010-09-17 19:39:43 +00:00
|
|
|
end
|
|
|
|
end
|