blob: 145c8cb159057922fdb66e9daa540bc283ffde64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Sbuild < Formula
homepage 'http://sbuild.tototec.de/sbuild/projects/sbuild/wiki'
url 'http://sbuild.tototec.de/sbuild/attachments/download/87/sbuild-0.7.1-dist.zip'
sha1 'b18c1e21f6bd5ef5b1d9733b171a1558e72ed017'
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
|