# $Id: PKGBUILD 203583 2014-01-13 17:12:14Z andyrtr $ # Maintainer: Gaetan Bisson # Contributor: Pierre Schmitz # Contributor: Bug pkgname=libotr pkgver=4.0.0 pkgrel=5 pkgdesc='Off-the-Record Messaging Library and Toolkit' url='http://www.cypherpunks.ca/otr/' license=('GPL' 'LGPL') arch=('i686' 'x86_64') depends=('libgcrypt') source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz" 'kopete.patch') sha1sums=('8865e9011b8674290837afcf7caf90c492ae09cc' '55988c4f11b6852491a758ea7a5b7071e8959c55') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" patch -p1 -i ../kopete.patch # FS#38326 } build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --mandir=/usr/share/man make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install }