diff options
| author | Jack Nagel | 2012-05-05 17:00:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-05-05 17:00:18 -0500 |
| commit | fada79d200173e530d8c1fc01bde2365a58308bb (patch) | |
| tree | daa5cf372d5f7d8836b67a2e375e29446fb27295 /Library/Formula | |
| parent | 74319b17a54b0aa4ab227c438b64b31e235559eb (diff) | |
| download | homebrew-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.rb | 11 |
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 |
