65384574fc
BagIt Library is a Java software library that supports the creation, manipulation and validation of directories complying with the BagIt specification. The spec is for packaging of digital content for transfer. Content is packaged (the bag) along with a small amount of machine-readable text (the tag) to help automate the content's receipt, storage and retrieval. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
576 B
Ruby
18 lines
576 B
Ruby
require 'formula'
|
|
|
|
class Bagit <Formula
|
|
url 'http://downloads.sourceforge.net/project/loc-xferutils/loc-bil-java-library/3.6/bagit-3.6-bin.zip'
|
|
homepage 'http://sourceforge.net/project/loc-xferutils'
|
|
md5 '37b3ed7c787a1722e8dbe5acdb6298ce'
|
|
|
|
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
|