homebrew-core/Formula/sbuild.rb
Tobias Roeser b7e4b3921a sbuild 0.7.0
Closes Homebrew/homebrew#25075.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-09 20:33:07 -08:00

17 lines
441 B
Ruby

require 'formula'
class Sbuild < Formula
homepage 'http://sbuild.tototec.de/sbuild/projects/sbuild/wiki'
url 'http://sbuild.tototec.de/sbuild/attachments/download/82/sbuild-0.7.0-dist.zip'
sha1 '02e593136d5c24269ea9243e88ee7701cb50b120'
def install
libexec.install Dir['*']
system "chmod +x #{libexec}/bin/sbuild"
bin.install_symlink libexec/"bin/sbuild"
end
test do
system "#{bin}/sbuild", "--help"
end
end