diff options
| author | ari | 2013-06-04 14:26:26 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-24 22:44:40 -0700 |
| commit | 5c1ae4c4921bd91645cfc5405ea9c5badf536702 (patch) | |
| tree | 3941a4904ad4ad0a844606e4d5cefc4d18d31621 /Library/Formula | |
| parent | 8bc4f0aed5509531412a2795824fce107915c34e (diff) | |
| download | homebrew-5c1ae4c4921bd91645cfc5405ea9c5badf536702.tar.bz2 | |
sbuild 0.4.0
A scala-based build system
Closes #20244.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sbuild.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/sbuild.rb b/Library/Formula/sbuild.rb new file mode 100644 index 000000000..58e4cf00c --- /dev/null +++ b/Library/Formula/sbuild.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Sbuild < Formula + homepage 'http://sbuild.tototec.de/sbuild/projects/sbuild/wiki' + url 'http://sbuild.tototec.de/sbuild/attachments/download/57/sbuild-0.4.0-dist.zip' + sha1 'f206a97c810d925f2bd06bc463c55d5cd7483ca5' + + 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 |
