homebrew-core/Formula/moreutils.rb
Jack Nagel d5c5edab52 moreutils: install 'chronic'
Closes Homebrew/homebrew#12809.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-06-13 21:31:32 -05:00

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.46.tar.gz'
mirror 'http://ftp.us.debian.org/debian/pool/main/m/moreutils/moreutils_0.46.tar.gz'
md5 '658f9cc6b6dcc0b50dcff714e13b22dc'
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