homebrew-core/Formula/liquibase.rb
Brett Koonce 6c07218e75 liquibase 3.0.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-15 17:03:37 -07:00

28 lines
606 B
Ruby

require 'formula'
class Liquibase < Formula
homepage 'http://liquibase.org'
url 'http://downloads.sourceforge.net/project/liquibase/Liquibase%20Core/liquibase-3.0.4-bin.tar.gz'
sha1 '9ee67d19e1f8099abb2217239092e5eb883b6e88'
def install
rm_f Dir['*.bat']
chmod 0755, Dir['liquibase']
prefix.install_metafiles
libexec.install Dir['*']
bin.install_symlink libexec+'liquibase'
end
def caveats
<<-EOS.undent
You should set the environment variable LIQUIBASE_HOME to
#{libexec}
EOS
end
test do
system "#{bin}/liquibase", "--version"
end
end