wok-next view python-ecore/receipt @ rev 20632

gegl: fix packing
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 10:53:56 2018 +0300 (2018-04-27)
parents 16df76e1fc6a
children
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="http://www.enlightenment.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="git|git://git.enlightenment.org/legacy/bindings/python/$PACKAGE.git"
14 BUILD_DEPENDS="ecore-dev python-dev python-cython autoconf automake git \
15 subversion libtool"
16 SPLIT="python-ecore-dev"
18 compile_rules() {
19 ./autogen.sh &&
20 ./configure --prefix=/usr &&
21 make all && make install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 python-ecore)
27 copy @std
28 DEPENDS="ecore"
29 TAGS="e enlightenment efl python"
30 ;;
31 *-dev)
32 copy @dev
33 DEPENDS="python-ecore ecore-dev python-dev"
34 ;;
35 esac
36 }