wok view tinypy/receipt @ rev 4327

Fix: avidemux have shared libs (and no desktop file)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 30 00:57:40 2009 +0200 (2009-09-30)
parents
children 866fa2493b1b
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="glibc-base"
10 BUILD_DEPENDS="python-dev"
11 WEB_SITE="http://www.tinypy.org/"
12 WGET_URL="http://tinypy.googlecode.com/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py linux
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $src/build/tinypy $fs/usr/bin
26 }