wok annotate tinypy/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents 58996059f27f
children 23c3aed67cd9
rev   line source
pankso@4323 1 # SliTaz package receipt.
pankso@4323 2
pankso@4323 3 PACKAGE="tinypy"
pankso@4323 4 VERSION="1.1"
pankso@4323 5 CATEGORY="development"
pankso@4323 6 SHORT_DESC="A minimalist implementation of Python."
pankso@4323 7 MAINTAINER="pankso@slitaz.org"
pankso@4323 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@4323 9 DEPENDS="glibc-base"
pankso@4323 10 BUILD_DEPENDS="python-dev"
pankso@4323 11 WEB_SITE="http://www.tinypy.org/"
pankso@4323 12 WGET_URL="http://tinypy.googlecode.com/files/$TARBALL"
jozee@4973 13 TAGS="python"
pankso@4323 14
pankso@4323 15 # Rules to configure and make the package.
pankso@4323 16 compile_rules()
pankso@4323 17 {
pankso@4323 18 cd $src
pankso@4323 19 python setup.py linux
pankso@4323 20 }
pankso@4323 21
pankso@4323 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@4323 23 genpkg_rules()
pankso@4323 24 {
pankso@4323 25 mkdir -p $fs/usr/bin
pankso@4323 26 cp -a $src/build/tinypy $fs/usr/bin
pankso@4323 27 }