summaryrefslogtreecommitdiff
path: root/staging
diff options
context:
space:
mode:
Diffstat (limited to 'staging')
-rw-r--r--staging/libotr/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/staging/libotr/PKGBUILD b/staging/libotr/PKGBUILD
new file mode 100644
index 000000000..ebc81d058
--- /dev/null
+++ b/staging/libotr/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 166024 2012-09-04 14:32:25Z bisson $
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+# Contributor: Pierre Schmitz <pierre@archlinux.de>
+# Contributor: Bug <Bug2000@gmail.com>
+
+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
+}