blob: ff16e0570a1c8703e6d637eb16840bb584eb462e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Gti < Formula
homepage 'http://r-wos.org/hacks/gti'
url 'https://github.com/rwos/gti/tarball/v1.0.4'
sha1 '39a9780fc10663483f68ee6a4e69ad166ea21f62'
head 'https://github.com/rwos/gti.git'
def install
system 'make', "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
bin.install 'gti'
end
end
|