summaryrefslogtreecommitdiff
path: root/extra/libotr/PKGBUILD
blob: 77e86cba1dce66e5de0506442ce5c0e80390538e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# $Id: PKGBUILD 121299 2011-04-30 13:17:51Z andrea $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Bug <Bug2000@gmail.com>

pkgname=libotr
pkgver=3.2.0
pkgrel=2
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
}

package() {
	cd "$srcdir/$pkgname-$pkgver"
	make DESTDIR="$pkgdir" install
}