aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/roundup.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/Library/Formula/roundup.rb b/Library/Formula/roundup.rb
index 0c92e2293..82cdf7b85 100644
--- a/Library/Formula/roundup.rb
+++ b/Library/Formula/roundup.rb
@@ -1,20 +1,23 @@
require 'formula'
class Roundup < Formula
- url 'https://github.com/bmizerany/roundup/tarball/v0.0.5'
homepage 'http://bmizerany.github.com/roundup'
+ url 'https://github.com/bmizerany/roundup/tarball/v0.0.5'
md5 '74623a63f4386286caafdec8b9c0f84d'
+
head 'https://github.com/bmizerany/roundup.git'
def install
- system "./configure", "--prefix=#{prefix}", "--bindir=#{bin}",
- "--mandir=#{man}", "--sysconfdir=#{etc}",
+ system "./configure", "--prefix=#{prefix}",
+ "--bindir=#{bin}",
+ "--mandir=#{man}",
+ "--sysconfdir=#{etc}",
"--datarootdir=#{share}"
system "make"
system "make install"
end
def test
- system "roundup"
+ system "#{bin}/roundup", "-v"
end
end