aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gti.rb
blob: b197cd438233cb416575b8ad9ca6072ecc94ac58 (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/archive/v1.2.0.tar.gz'
  sha1 'c24e662486ccb4065ad36cab455d864cb17ecfc4'

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

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