diff options
author | root <root@rshg054.dnsready.net> | 2011-12-12 23:14:53 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-12 23:14:53 +0000 |
commit | cb9c375209c236c16557878a1b864f91de27b88d (patch) | |
tree | b0a7d6c0d887620c16ad1a95c9dfef632cb1b877 /community/ctpl | |
parent | 22b0fa480661b6247dabf39059fe629e1d233a9a (diff) |
Mon Dec 12 23:14:53 UTC 2011
Diffstat (limited to 'community/ctpl')
-rw-r--r-- | community/ctpl/PKGBUILD | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/community/ctpl/PKGBUILD b/community/ctpl/PKGBUILD index f2d098254..bae7a5242 100644 --- a/community/ctpl/PKGBUILD +++ b/community/ctpl/PKGBUILD @@ -1,25 +1,29 @@ -# $Id: PKGBUILD 56633 2011-10-09 09:46:57Z angvp $ -# Maintainer: Angel Velasquez <angvp@archlinux.org> +# $Id: PKGBUILD 60331 2011-12-11 14:46:35Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Patrick Melo <patrick@patrickmelo.eti.br> - pkgname=ctpl pkgver=0.3.3 -pkgrel=1 -pkgdesc="CTPL is a template engine library written in C" -arch=('i686' 'x86_64') +pkgrel=2 +pkgdesc="Template engine library written in C" +arch=('x86_64' 'i686') url="http://ctpl.tuxfamily.org/" license=('GPL') depends=('glib2' 'gvfs') -source=(http://download.tuxfamily.org/ctpl/releases/$pkgname-$pkgver.tar.gz) -md5sums=('3380e06d94d921fb50b0e40ddb351daa') +options=(!libtool) +source=("http://download.tuxfamily.org/ctpl/releases/$pkgname-$pkgver.tar.gz") +sha256sums=('7da73e7d8f10d222f5685b8eb80541d7e4d342aa74673039692fa5c4e8b120a7') build() { - cd ${srcdir}/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr make } package() { - cd ${srcdir}/$pkgname-$pkgver - make DESTDIR=${pkgdir} install + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install } +# vim:set ts=2 sw=2 et: |