sbuild 0.4.0

A scala-based build system

Closes Homebrew/homebrew#20244.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
ari 2013-06-04 14:26:26 +02:00 committed by Adam Vandenberg
parent 28fb6206a1
commit b3c357e286
1 changed files with 17 additions and 0 deletions

17
Formula/sbuild.rb Normal file
View File

@ -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