wok-next view tinypy/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents da9e80c5d4bb
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="tinypy"
4 VERSION="1.1"
5 CATEGORY="development"
6 SHORT_DESC="A minimalist implementation of Python"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.tinypy.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://tinypy.googlecode.com/files/$TARBALL"
14 BUILD_DEPENDS="python-dev"
16 compile_rules() {
17 python -B setup.py linux &&
18 install -Dm755 $src/build/tinypy $install/usr/bin/tinypy
19 }
21 genpkg_rules() {
22 copy @std
23 DEPENDS="glibc-base"
24 TAGS="python"
25 }