homebrew-core/Formula/num-utils.rb

18 lines
521 B
Ruby
Raw Normal View History

require 'formula'
class NumUtils < Formula
homepage 'http://suso.suso.org/programs/num-utils/'
url "http://suso.suso.org/programs/num-utils/downloads/num-utils-0.5.tar.gz"
sha1 '3fc6130874129fe1e98db6db8b3dc43f0e1a89ac'
2013-11-13 04:46:19 +00:00
conflicts_with 'normalize', :because => 'both install `normalize` binaries'
def install
2013-11-13 04:46:19 +00:00
%w(average bound interval normalize numgrep numprocess numsum random range round).each do |p|
system "pod2man", p, "#{p}.1"
bin.install p
man1.install "#{p}.1"
end
end
end