wok view python-elementary/receipt @ rev 14859

Up: gpodder (3.5.1)
author Claudinei Pereira <claudinei@slitaz.org>
date Mon Jul 22 18:17:33 2013 -0300 (2013-07-22)
parents ebebbe015e8a
children 79ea4cfe08cc
line source
1 # SliTaz package receipt.
3 PACKAGE="python-elementary"
4 VERSION="1.7.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Python bindings for Elementary"
7 MAINTAINER="domcox@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
11 TAGS="e enlightenment python"
13 DEPENDS="elementary python-evas"
14 BUILD_DEPENDS="elementary-dev python-evas-dev python-cython
15 autoconf automake git subversion libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure --prefix=/usr &&
22 make $MAKEFLAGS all && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/python2.7 $fs/usr/lib
30 }