aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBo Xiao2012-07-24 23:53:41 +0800
committerAdam Vandenberg2012-08-22 09:02:41 -0700
commit33a0498e33ee8decff9feb5d1e46662fc0b0cc0d (patch)
tree6c1e7e91afa6dbb11bddd517f73fd8ab349f172e /Library
parentcc07b9b105bb68f4c6091b9f35ba9763bf6a229e (diff)
downloadhomebrew-33a0498e33ee8decff9feb5d1e46662fc0b0cc0d.tar.bz2
ctemplate 2.2
Closes #13564. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ctemplate.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/ctemplate.rb b/Library/Formula/ctemplate.rb
new file mode 100644
index 000000000..fe56aa37f
--- /dev/null
+++ b/Library/Formula/ctemplate.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Ctemplate < Formula
+ homepage 'https://ctemplate.googlecode.com/'
+ url 'http://ctemplate.googlecode.com/files/ctemplate-2.2.tar.gz'
+ sha1 'b00a35291bc5c5bb8493a68bbf76d6a9cfa5c117'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+
+ system "make install"
+ end
+end