blob: 1da5d6d9d012905c375d741cac13b373987bb30b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
require "formula"
class Ticcutils < Formula
homepage "http://ilk.uvt.nl/ticcutils/"
url "http://software.ticc.uvt.nl/ticcutils-0.7.tar.gz"
sha1 "f58ec1a6b64a0eebc1a8a74ef625cf6398a5fafc"
bottle do
cellar :any
sha1 "5e8c69c62810db58504dd2fd60c4d4d39929d87f" => :yosemite
sha1 "307d320bb730deeaf83d452619e043d0ac0bde88" => :mavericks
sha1 "336da8cc03521e25d220b56f722f6e7a4a8ab303" => :mountain_lion
end
depends_on "pkg-config" => :build
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end
|