blob: 6bea3081084fb258c4a85e3cf8e9456d902fc3a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class TaskSpooler < Formula
homepage 'http://vicerveza.homeunix.net/~viric/soft/ts/'
url 'http://vicerveza.homeunix.net/~viric/soft/ts/ts-0.7.3.tar.gz'
sha1 '33b9321d4f48a2c2685a8240db4e00c0e69ef9bc'
conflicts_with 'moreutils',
:because => "both install a 'ts' executable."
def install
system "make", "install", "PREFIX=#{prefix}"
end
end
|