wok view piclass-code-examples/receipt @ rev 18077

Rebuild Python packages to remove "*.pyc" files from package.lists (part 1).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 22 17:34:18 2015 +0300 (2015-05-22)
parents 8d9c3bb3a230
children 89c8d8b6cf48
line source
1 # SliTaz package receipt.
3 PACKAGE="piclass-code-examples"
4 GITHASH="0487029f735e1d9f9b41cf94e3572c1e3d7beec8"
5 VERSION=${GITHASH:0:7}
6 CATEGORY="development"
7 SHORT_DESC="PiClass Python and SHell code examples"
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="BSD"
10 TARBALL="$PACKAGE-$VERSION.tar.zip"
11 WEB_SITE="http://piclass.org"
12 WGET_URL="https://codeload.github.com/piclass/code-examples/zip/$GITHASH"
13 HOST_ARCH="arm"
15 TAGS="python raspberrypi rpi"
16 DEPENDS="python python-smbus i2c-tools slitaz-arm-rpi"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 make DESTDIR=${DESTDIR} install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p ${fs}
28 cp -a ${install}/* ${fs}
29 }