blob: 86db95a518a8221d9e9b4cd871e2e805beb89281 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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.49.tar.gz'
mirror 'http://ftp.us.debian.org/debian/pool/main/m/moreutils/moreutils_0.49.tar.gz'
sha1 'cb7948b61749680ad5b6c175ae76381703c6b673'
conflicts_with 'parallel',
:because => "both install a 'parallel' executable."
conflicts_with 'task-spooler',
:because => "both install a 'ts' executable."
def install
# "make all" will try to build the man pages, which requires Docbook
scripts = %w{vidir vipe ts combine zrun chronic}
bins = %w{isutf8 ifne pee sponge mispipe lckdo parallel errno}
system "make", *bins
bin.install scripts + bins
end
end
|