wok view tinypy/receipt @ rev 17057

syslinux/c32box: x86_64 auto select
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 21 09:56:57 2014 +0200 (2014-08-21)
parents 866fa2493b1b
children 934055de50e2
line source
1 # SliTaz package receipt.
3 PACKAGE="tinypy"
4 VERSION="1.1"
5 CATEGORY="development"
6 SHORT_DESC="A minimalist implementation of Python."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.tinypy.org/"
11 WGET_URL="http://tinypy.googlecode.com/files/$TARBALL"
12 TAGS="python"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="python-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py linux
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/build/tinypy $fs/usr/bin
29 }