diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-13 11:55:35 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-12-13 11:55:35 -0300 |
commit | 69fbf2ca624da30dfaefb4c4150715df81d8cf00 (patch) | |
tree | 43a6191492a1d6a8b2dbf3a5fc30e04418407eff /community/ctpl/PKGBUILD | |
parent | 20325742c50f83cc58e49aa3b8347fde1399d734 (diff) | |
parent | cb9c375209c236c16557878a1b864f91de27b88d (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/ctpl/PKGBUILD
extra/ffmpeg/PKGBUILD
extra/subversion/PKGBUILD
multilib/lib32-libtiff/PKGBUILD
Diffstat (limited to 'community/ctpl/PKGBUILD')
-rw-r--r-- | community/ctpl/PKGBUILD | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/community/ctpl/PKGBUILD b/community/ctpl/PKGBUILD index ba37f84d9..72fa74e38 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" +pkgrel=2 +pkgdesc="Template engine library written in C" arch=('i686' 'x86_64' 'mips64el') 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: |