wok view libotr/receipt @ rev 21906

updated shared-mime-info and shared-mime-info-dev (1.6 -> 1.14)
author Hans-G?nter Theisgen
date Fri Oct 04 14:42:51 2019 +0100 (2019-10-04)
parents b0c60d808e5c
children ad8b9ff412d2
line source
1 # SliTaz package receipt.
3 PACKAGE="libotr"
4 VERSION="4.1.1"
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="https://www.cypherpunks.ca/otr/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE$TARBALL"
14 DEPENDS="libgcrypt libgpg-error"
15 BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 }