2010-07-02 17:57:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Moreutils < Formula
|
2010-07-02 17:57:13 +00:00
|
|
|
homepage 'http://packages.debian.org/unstable/utils/moreutils'
|
2012-04-30 21:35:48 +00:00
|
|
|
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'
|
2010-07-02 17:57:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# Building the man pages requires DocBook, so we skip them.
|
2012-06-14 02:30:44 +00:00
|
|
|
scripts = %w[chronic combine ts vidir vipe zrun]
|
2010-07-02 17:57:13 +00:00
|
|
|
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
|