aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ctemplate.rb
blob: defb05d2860a9e07ab8114ac379160d11e6ec995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Ctemplate < Formula
  homepage 'https://ctemplate.googlecode.com/'
  url 'http://ctemplate.googlecode.com/files/ctemplate-2.2.tar.gz'
  sha1 'b00a35291bc5c5bb8493a68bbf76d6a9cfa5c117'

  head 'http://ctemplate.googlecode.com/svn/trunk/'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"

    system "make install"
  end
end