wok-next view qrencode/receipt @ rev 19657

Up: xorg-server, xorg-xf86-input-evdev, xorg-xf86-input-synaptics; add: xorg-xf86-input-wacom; remove: xorg-xf86-input-vmmouse.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Mar 04 15:03:03 2017 +0200 (2017-03-04)
parents dfaf237903f2
children 765ba71df4e0
line source
1 # SliTaz package receipt.
3 PACKAGE="qrencode"
4 VERSION="3.1.1"
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://megaui.net/fukuchi/works/qrencode/index.en.html"
11 WGET_URL="http://megaui.net/fukuchi/works/qrencode/$TARBALL"
13 DEPENDS="libpng"
14 BUILD_DEPENDS="libpng-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
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
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/lib*so* $fs/usr/lib
33 }