aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-05-05 17:00:18 -0500
committerJack Nagel2012-05-05 17:00:18 -0500
commitfada79d200173e530d8c1fc01bde2365a58308bb (patch)
treedaa5cf372d5f7d8836b67a2e375e29446fb27295 /Library/Formula
parent74319b17a54b0aa4ab227c438b64b31e235559eb (diff)
downloadhomebrew-fada79d200173e530d8c1fc01bde2365a58308bb.tar.bz2
roundup: style nits
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
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