Date: Tuesday, October 30, 2012 @ 21:24:13 Author: eric Revision: 170015
Add transitional package for libotr 3.X Added: libotr3/ libotr3/repos/ libotr3/trunk/ libotr3/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: libotr3/trunk/PKGBUILD =================================================================== --- libotr3/trunk/PKGBUILD (rev 0) +++ libotr3/trunk/PKGBUILD 2012-10-31 01:24:13 UTC (rev 170015) @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 165291 2012-08-14 23:10:37Z bisson $ +# Maintainer: Gaetan Bisson <[email protected]> +# Contributor: Pierre Schmitz <[email protected]> +# Contributor: Bug <[email protected]> + +pkgname=libotr3 +pkgver=3.2.1 +pkgrel=1 +pkgdesc='Off-the-Record Messaging Library and Toolkit (version 3.X)' +url='http://www.cypherpunks.ca/otr/' +license=('GPL' 'LGPL') +arch=('i686' 'x86_64') +depends=('libgcrypt') +options=('!libtool') +source=("http://www.cypherpunks.ca/otr/libotr-${pkgver}.tar.gz") +sha1sums=('898bf00d019f49ca34cd0116dd2e22685c67c394') + +build() { + cd "${srcdir}/libotr-${pkgver}" + ./configure --prefix=/usr --mandir=/usr/share/man --disable-static + make +} + +package() { + cd "${srcdir}/libotr-${pkgver}" + make DESTDIR="${pkgdir}" install +}
