blob: 9c62b73bf292cb51043113c15d5cf84c0d436632 (
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.4.tar.gz'
  sha1 '92813a3b0eedfe1d4a177727122e6d08695f6bc8'
  conflicts_with 'moreutils',
    :because => "both install a 'ts' executable."
  def install
    system "make", "install", "PREFIX=#{prefix}"
  end
end
  |