d8cb30d372
ticcutils is needed for timbl version 6.4.5 Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
333 B
Ruby
15 lines
333 B
Ruby
require "formula"
|
|
|
|
class Ticcutils < Formula
|
|
homepage "http://ilk.uvt.nl/ticcutils/"
|
|
url "http://software.ticc.uvt.nl/ticcutils-0.5.tar.gz"
|
|
sha1 "8cdd5aa1536bcf98ee4e48f188726ec826db90a0"
|
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|