wok view python-ecore/receipt @ rev 20585

Update some bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 15 09:20:58 2018 +0100 (2018-12-15)
parents 86790a278e70
children b7f1bd1b9ac7
line source
1 # SliTaz package receipt.
3 PACKAGE="python-ecore"
4 VERSION="1.7.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Python bindings for ecore"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.enlightenment.org/"
11 WGET_URL="git|git://git.enlightenment.org/legacy/bindings/python/$PACKAGE.git"
12 TAGS="e enlightenment efl python"
14 DEPENDS="ecore"
15 BUILD_DEPENDS="ecore-dev python-dev python-cython autoconf automake git \
16 subversion libtool file"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./autogen.sh &&
22 ./configure --prefix=/usr &&
23 make 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 }