summaryrefslogtreecommitdiff
path: root/staging
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-09-06 00:03:30 +0000
committerroot <root@rshg054.dnsready.net>2012-09-06 00:03:30 +0000
commitaf549d0243764531309fa94b1f5cee58982c496a (patch)
treeafb2851caf91700e83c4062a9e77c6a92fe0326b /staging
parent58f5e0b164b5f4c9af61b2e42bd10c85f28b9bed (diff)
Thu Sep 6 00:03:29 UTC 2012
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
+}