PKGBUILDs/extra/libotr/PKGBUILD
2009-10-09 21:23:22 -05:00

22 lines
No EOL
574 B
Bash

# $ Id: $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Bug <Bug2000@gmail.com>
pkgname=libotr
pkgver=3.2.0
pkgrel=1
pkgdesc='Off-the-Record Messaging Library and Toolkit.'
arch=('i686' 'x86_64')
url='http://www.cypherpunks.ca/otr/'
license=('GPL' 'LGPL')
depends=('libgcrypt')
options=('!libtool')
source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz")
md5sums=('faba02e60f64e492838929be2272f839')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --mandir=/usr/share/man
make || return 1
make DESTDIR=$pkgdir install
}