blob: 873d69f86a2ea6a3153686200084a94430aea65b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require "formula"
class Ctemplate < Formula
homepage "https://ctemplate.googlecode.com/"
head "http://ctemplate.googlecode.com/svn/trunk/"
url "http://ctemplate.googlecode.com/svn/tags/ctemplate-2.3/"
version "2.3"
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|