wok view python-edje/receipt @ rev 17005

Add pulseaudio
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 12 13:55:28 2014 +0200 (2014-08-12)
parents e1eb3761bd48
children 16df76e1fc6a
line source
1 # SliTaz package receipt.
3 PACKAGE="python-edje"
4 VERSION="1.7.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Python bindings for Edje"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
12 TAGS="e enlightenment python"
14 DEPENDS="edje python-evas libxml2"
15 BUILD_DEPENDS="edje-dev python-evas-dev
16 python-cython autoconf automake git subversion libtool libxml2-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure --prefix=/usr &&
23 make $MAKEFLAGS all && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/python2.7 $fs/usr/lib
31 }