blob: b280025e1f6320cab932d57dee012eaaa2df52aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: portable OTR Messaging Library
# URL: http://www.cypherpunks.ca/otr
# Maintainer: Erich Eckner, crux at eckner dot net
# Packager: Niklas Wennerstrand, niklas at netsplit dot nu
# Depends on:
name=libotr
version=4.1.1
release=1
source=(http://www.cypherpunks.ca/otr/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/share/man
make
make DESTDIR=$PKG install
}
|