15 lines
367 B
Ruby
15 lines
367 B
Ruby
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/"
|
|
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
end
|
|
end
|