851d9ef7b1
Closes Homebrew/homebrew#13826. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
649 B
Ruby
17 lines
649 B
Ruby
require 'formula'
|
|
|
|
class Moreutils < Formula
|
|
homepage 'http://packages.debian.org/unstable/utils/moreutils'
|
|
url 'http://mirrors.kernel.org/debian/pool/main/m/moreutils/moreutils_0.47.tar.gz'
|
|
mirror 'http://ftp.us.debian.org/debian/pool/main/m/moreutils/moreutils_0.47.tar.gz'
|
|
md5 '4cd3b41a90d07166632942e173ac5ce2'
|
|
|
|
def install
|
|
# Building the man pages requires DocBook, so we skip them.
|
|
scripts = %w[chronic 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
|