wok rev 15477
Add python-qrcode
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 10 10:29:13 2013 +0000 (2013-11-10) |
parents | 1f41e0a09789 |
children | 0b592dc3c0d4 |
files | memtest/stuff/bootloader.S memtest/stuff/pack python-qrcode/receipt |
line diff
1.1 --- a/memtest/stuff/bootloader.S Sun Nov 10 09:29:01 2013 +0000 1.2 +++ b/memtest/stuff/bootloader.S Sun Nov 10 10:29:13 2013 +0000 1.3 @@ -386,7 +386,7 @@ 1.4 1.5 #ifdef CHECK_REALMODE 1.6 realmode_expected: 1.7 - .ascii "386 real mode only." 1.8 + .ascii "386+ real mode only." 1.9 .byte 13,10,0 1.10 #endif 1.11 #ifdef HELP
2.1 --- a/memtest/stuff/pack Sun Nov 10 09:29:01 2013 +0000 2.2 +++ b/memtest/stuff/pack Sun Nov 10 10:29:13 2013 +0000 2.3 @@ -56,6 +56,7 @@ 2.4 Memtest86+ is an endless advanced memory diagnostic tool released under the 2.5 terms of the Gnu Public License (GPL). 2.6 2.7 + 2.8 EOT 2.9 )" 2.10 main $1 ${2:-$1.packed} "${3:-$HELP}" 2>/dev/null <<EOT
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/python-qrcode/receipt Sun Nov 10 10:29:13 2013 +0000 3.3 @@ -0,0 +1,29 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="python-qrcode" 3.7 +SOURCE="qrcode" 3.8 +VERSION="4.0.4" 3.9 +CATEGORY="development" 3.10 +SHORT_DESC="Python QR Code image generator." 3.11 +MAINTAINER="pascal.bellard@slitaz.org" 3.12 +LICENSE="PSL" 3.13 +TARBALL="$SOURCE-$VERSION.tar.gz" 3.14 +WEB_SITE="https://pypi.python.org/pypi/qrcode" 3.15 +WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 3.16 + 3.17 +DEPENDS="python python-pil" 3.18 +BUILD_DEPENDS="python-dev python" 3.19 + 3.20 +# Rules to configure and make the package. 3.21 +compile_rules() 3.22 +{ 3.23 + cd $src 3.24 + python setup.py build && 3.25 + python setup.py install --root=$DESTDIR 3.26 +} 3.27 + 3.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.29 +genpkg_rules() 3.30 +{ 3.31 + cp -a $install/usr $fs 3.32 +}