# $Id: PKGBUILD 149079 2012-02-05 16:55:15Z bisson $ # Maintainer: Gaetan Bisson # Contributor: Pierre Schmitz # Contributor: Bug pkgname=libotr pkgver=3.2.0 pkgrel=3 pkgdesc='Off-the-Record Messaging Library and Toolkit' url='http://www.cypherpunks.ca/otr/' license=('GPL' 'LGPL') arch=('i686' 'x86_64') depends=('libgcrypt') options=('!libtool') source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz") sha1sums=('e5e10b8ddaf59b0ada6046d156d0431cd2790db9') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --mandir=/usr/share/man --disable-static make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }