wok annotate python-elementary/receipt @ rev 18677

syslinux/c32box: fix custom initrd >= 2k
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 06 17:41:24 2015 +0100 (2015-12-06)
parents 7d6089953592
children 86790a278e70
rev   line source
domcox@14433 1 # SliTaz package receipt.
domcox@14433 2
domcox@14433 3 PACKAGE="python-elementary"
pascal@14706 4 VERSION="1.7.0"
domcox@14433 5 CATEGORY="base-system"
domcox@14694 6 SHORT_DESC="Python bindings for Elementary"
domcox@14433 7 MAINTAINER="domcox@slitaz.org"
pascal@14997 8 LICENSE="LGPL3"
domcox@14433 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
domcox@14433 10 WEB_SITE="http://www.enlightenment.org/"
pascal@14706 11 WGET_URL="http://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
domcox@14694 12 TAGS="e enlightenment python"
domcox@14433 13
domcox@14433 14 DEPENDS="elementary python-evas"
al@18077 15 BUILD_DEPENDS="elementary-dev python-evas-dev python-cython \
domcox@14433 16 autoconf automake git subversion libtool"
domcox@14433 17
domcox@14433 18 # Rules to configure and make the package.
domcox@14433 19 compile_rules()
domcox@14433 20 {
domcox@14433 21 ./autogen.sh &&
domcox@14433 22 ./configure --prefix=/usr &&
al@18077 23 make $MAKEFLAGS all && make install
domcox@14433 24 }
domcox@14433 25
domcox@14433 26 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@14433 27 genpkg_rules()
domcox@14433 28 {
domcox@14433 29 mkdir -p $fs/usr/lib
domcox@14433 30 cp -a $install/usr/lib/python2.7 $fs/usr/lib
domcox@14433 31 }