homebrew-core/Formula/bagit.rb

23 lines
634 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Bagit < Formula
desc "Library for creation, manipulation, and validation of bags"
homepage "https://github.com/LibraryOfCongress/bagit-java"
url "https://github.com/LibraryOfCongress/bagit-java/releases/download/v4.12.0/bagit-4.12.0.zip"
sha256 "045efaff7375af8cb47c9dc7890bf17d4d49d149e4d3ac388862288087505695"
2015-10-22 13:08:56 +00:00
bottle :unneeded
def install
2014-02-27 05:54:04 +00:00
# put logs in var, not in the Cellar
(var/"log/bagit").mkpath
2014-02-27 05:54:04 +00:00
inreplace "conf/log4j.properties", "${app.home}/logs", "#{var}/log/bagit"
libexec.install Dir["*"]
2012-02-26 00:53:55 +00:00
bin.install_symlink libexec/"bin/bagit"
end
2014-02-27 05:30:02 +00:00
test do
system bin/"bagit"
2014-02-27 05:30:02 +00:00
end
end