blob: e5acaa61d6f030dd6bad8d10385c5c016f33c67d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: off-the-record encryption for pidgin
# URL: http://www.cypherpunks.ca/otr/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: pidgin libotr
name=pidgin-otr
version=4.0.2
release=2
source=(http://www.cypherpunks.ca/otr/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/share/man --disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/locale
}
|