Roundup 0.0.5

Roundup is a useful shell utility for unit testing shell scripts.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Michael Hanson 2011-12-11 01:48:02 -08:00 committed by Adam Vandenberg
parent 25f4071031
commit 505ebb8fd8
1 changed files with 20 additions and 0 deletions

20
Formula/roundup.rb Normal file
View File

@ -0,0 +1,20 @@
require 'formula'
class Roundup < Formula
url 'https://github.com/bmizerany/roundup/tarball/v0.0.5'
homepage 'http://bmizerany.github.com/roundup'
md5 '74623a63f4386286caafdec8b9c0f84d'
head 'https://github.com/bmizerany/roundup.git'
def install
system "./configure", "--prefix=#{prefix}", "--bindir=#{bin}",
"--mandir=#{man}", "--sysconfdir=#{etc}",
"--datarootdir=#{share}"
system "make"
system "make install"
end
def test
system "roundup"
end
end