summaryrefslogtreecommitdiff
path: root/community/ctpl
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/ctpl
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/ctpl')
-rw-r--r--community/ctpl/PKGBUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/community/ctpl/PKGBUILD b/community/ctpl/PKGBUILD
new file mode 100644
index 000000000..649722e45
--- /dev/null
+++ b/community/ctpl/PKGBUILD
@@ -0,0 +1,21 @@
+# $Id: PKGBUILD 29702 2010-10-18 18:39:07Z angvp $
+# Maintainer: Angel Velasquez <angvp@archlinux.org>
+# Contributor: Patrick Melo <patrick@patrickmelo.eti.br>
+
+pkgname=ctpl
+pkgver=0.3
+pkgrel=1
+pkgdesc="CTPL is a template engine library written in C"
+arch=('i686' 'x86_64')
+url="http://ctpl.tuxfamily.org/"
+license=('GPL')
+depends=('glib2' 'gvfs')
+source=(http://download.tuxfamily.org/ctpl/releases/$pkgname-$pkgver.tar.gz)
+md5sums=('fdc63a4a3eabf7d1be0078c6827579a5')
+
+build() {
+ cd ${srcdir}/$pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=${pkgdir} install
+}