diff options
Diffstat (limited to 'Library/Formula/roundup.rb')
| -rw-r--r-- | Library/Formula/roundup.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/roundup.rb b/Library/Formula/roundup.rb new file mode 100644 index 000000000..0c92e2293 --- /dev/null +++ b/Library/Formula/roundup.rb @@ -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 |
