diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/ctpl |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/ctpl')
-rw-r--r-- | community/ctpl/PKGBUILD | 21 |
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 +} |