homebrew-core/Formula/moreutils.rb
Martin Kühl c436d06851 Update moreutils to 0.41.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-20 08:18:00 -07:00

16 lines
552 B
Ruby

require 'formula'
class Moreutils <Formula
homepage 'http://packages.debian.org/unstable/utils/moreutils'
url 'http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_0.41.tar.gz'
md5 '598c412bbc452b436becce8bd28df377'
def install
# Building the man pages requires DocBook, so we skip them.
scripts = %w[combine ts vidir vipe zrun]
binaries = %w[isutf8 ifne pee sponge mispipe lckdo parallel]
# Just `make all` will try to build the man pages.
system "make", *binaries
bin.install scripts + binaries
end
end