aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gti.rb
blob: 3348eea63abac4e2ab3e36a1f48b36afadd52c90 (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.1.1.tar.gz'
  sha1 '93071cdeb6afc2d38c640ae60d95421207bc6368'

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

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