homebrew-core/Formula/moreutils.rb
Martin Kühl e6e5503028 New formula: moreutils.
We skip the man pages because building them requires docbook.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-08 09:11:26 -07:00

16 lines
549 B
Ruby

require 'formula'
class Moreutils <Formula
homepage 'http://packages.debian.org/unstable/utils/moreutils'
url 'http://ftp.debian.org/debian/pool/main/m/moreutils/moreutils_0.39.tar.gz'
md5 '73477f418ea2de81a045019cc71267f3'
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