wok-next view qrencode/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 d43bf7aae921
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="qrencode"
4 VERSION="3.4.4"
5 CATEGORY="misc"
6 SHORT_DESC="C library for encoding data in a QR Code symbol"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://fukuchi.org/works/qrencode/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://fukuchi.org/works/qrencode/$TARBALL"
14 BUILD_DEPENDS="libpng16-dev"
15 SPLIT="qrencode-dev"
17 compile_rules() {
18 ./configure $CONFIGURE_ARGS &&
19 fix libtool &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 qrencode)
27 copy @std
28 DEPENDS="libpng16"
29 ;;
30 qrencode-dev)
31 copy @dev
32 ;;
33 esac
34 }