# $Id: PKGBUILD 170571 2012-11-09 00:21:42Z eric $ # Maintainer: Gaetan Bisson # Contributor: Pierre Schmitz # Contributor: Bug pkgname=libotr pkgver=4.0.0 pkgrel=1 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=('8865e9011b8674290837afcf7caf90c492ae09cc') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --mandir=/usr/share/man --disable-static make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }