24 lines
729 B
Ruby
24 lines
729 B
Ruby
class Gti < Formula
|
|
homepage "http://r-wos.org/hacks/gti"
|
|
url "https://github.com/rwos/gti/archive/v1.2.0.tar.gz"
|
|
sha256 "e76a3d44610c1445263860391f8243cde622f58945101075f750e96d96063762"
|
|
|
|
head "https://github.com/rwos/gti.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "12a2fcc7465f9fba5cdaa92ea0af3e5ef459f42b4c5c930017fef0fb3366f121" => :yosemite
|
|
sha256 "308b88323f417d45c627add34f7b74b9f63cbc3f3065b3b3909908a3b78769cf" => :mavericks
|
|
sha256 "2e19e781ff48dee619cadbda1937d7a7a295ddbaa29af4b8881d211ea27b0c57" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
|
bin.install "gti"
|
|
man6.install "gti.6"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gti", "init"
|
|
end
|
|
end
|