wok-next view xplc/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents eb8067417980
children 81b782d36618
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xplc"
4 VERSION="0.3.13"
5 CATEGORY="network"
6 SHORT_DESC="Cross-Platform Lightweight Components"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://xplc.sourceforge.net"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/xplc/$TARBALL"
14 SPLIT="xplc-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 --without-libuuid \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 xplc)
29 copy @std
30 rm -f $fs/usr/bin/uuidgen
31 DEPENDS="gcc-lib-base"
32 ;;
33 *-dev)
34 copy @dev
35 ;;
36 esac
37 }