wok-next view libotr/receipt @ rev 20489

nareto: update index.php path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 11:42:04 2018 +0100 (2018-03-12)
parents b0c60d808e5c
children 5841522533ec
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libotr"
4 VERSION="4.0.0"
5 CATEGORY="network"
6 SHORT_DESC="Allows you to have private conversations over messenger"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2 LGPL2.1"
9 WEB_SITE="http://www.cypherpunks.ca/otr/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE$TARBALL"
14 BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev"
15 SPLIT="libotr-dev"
17 compile_rules() {
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libotr)
28 copy @std
29 DEPENDS="libgcrypt libgpg-error"
30 ;;
31 *-dev)
32 copy @dev
33 ;;
34 esac
35 }