#Packager: Vasile Coman #Former Packager(s): Name #Anything commented out is optional and can be deleted #Mandatory pkgname=libotr pkgver=3.2.0 pkgrel=1vc source=("http://www.cypherpunks.ca/otr/$pkgname-$pkgver.tar.gz") sourcetemplate=http://people.salixos.org/kerd/$pkgname/$pkgver/ docs=('authors' 'copying' 'changelog' 'install' 'news' 'readme') url="http://www.cypherpunks.ca/otr/" slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libotr (OTR Messaging Library and Toolkit)" "This is the portable OTR Messaging Library, as well as the toolkit" "to help you forge messages. OTR allows you to have private" "conversations over IM by providing:" "- Encryption: No one else can read your instant messages." "- Authentication: You are assured the correspondent is who you think" "it is." "- Deniability: The messages you send do not have digital signatures" "- Perfect forward secrecy." "http://www.cypherpunks.ca/otr/" ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --enable-static=no \ --build=$ARCH-slackware-linux || return 1 make || return 1 make install DESTDIR=$startdir/pkg || return 1 }