diff options
| author | Nick Quaranto | 2011-12-18 12:42:14 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-04 10:04:51 -0800 |
| commit | 4af5c242a3b8eceb1427496a1cddbf7a3d5ba534 (patch) | |
| tree | 07976cee9362ddf6d73d39d0ee7d993604719020 /Library/Formula | |
| parent | 9914df10432081431f2ec1d9ffdad801391ed11c (diff) | |
| download | homebrew-4af5c242a3b8eceb1427496a1cddbf7a3d5ba534.tar.bz2 | |
num-utils 0.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/num-utils.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/num-utils.rb b/Library/Formula/num-utils.rb new file mode 100644 index 000000000..9fa208cde --- /dev/null +++ b/Library/Formula/num-utils.rb @@ -0,0 +1,15 @@ +require 'formula' + +class NumUtils < Formula + url "http://suso.suso.org/programs/num-utils/downloads/num-utils-0.5.tar.gz" + md5 '58eed69761c2da97c3bfdfa422633427' + homepage 'http://suso.suso.org/programs/num-utils/' + + def install + %w(average bound interval normalize numgrep numprocess numsum random range round).each do |program| + system "pod2man #{program} #{program}.1" + bin.install program + man1.install "#{program}.1" + end + end +end |
