aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gti.rb
blob: e256407df923dbf567c9dba312a7908572b9f7d9 (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.3'
  sha1 '53ccd11466af6b859e5ec2ceec30f39bdc50c451'

  head 'https://github.com/rwos/gti.git'

  def install
    system 'make', "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
    bin.install 'gti'
  end
end