blob: 9fd2487bdf3f00b3560036e4eebb3f45cbf867ac (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Contributor: Kiyoshi Aman <kiyoshi.aman@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman@gmail.com>
pkgname=libotr
pkgver=4.0.0
pkgrel=0
pkgdesc="Off The Record Messaging, an encryption library for secure IM conversations"
url="http://otr.cypherpunks.ca/"
arch="all"
license="LGPL"
depends=
depends_dev="libgcrypt-dev"
makedepends="$depends_dev"
install=""
subpackages="$pkgname-dev $pkgname-doc:doc $pkgname-tools:tools"
source="http://www.cypherpunks.ca/otr/libotr-$pkgver.tar.gz"
_builddir="$srcdir/libotr-$pkgver"
prepare() {
local i
cd "$_builddir"
update_config_sub || return 1
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la || return 1
}
tools() {
license="GPL"
depends="$pkgname"
cd "$_builddir"
mkdir -p "$subpkgdir"/usr/
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
doc() {
depends="$pkgname"
cd "$_builddir"
install -Dm0644 Protocol-v2.html "$subpkgdir"/usr/share/doc/$pkgname/Protocol-v2.html
install -Dm0644 README "$subpkgdir"/usr/share/doc/$pkgname/README
}
md5sums="00979dca82d70383fcd1b01f3974363c libotr-4.0.0.tar.gz"
sha256sums="3f911994409898e74527730745ef35ed75c352c695a1822a677a34b2cf0293b4 libotr-4.0.0.tar.gz"
sha512sums="3f0a549bb615d6ff486db0efcc82fc6ad17c5860740c760315d5c81d298b00648d11f9da69c65b9859111d2150e4d10062aeb8611810f11e1da1ce62f07f02b6 libotr-4.0.0.tar.gz"
|