wok-next view python-elementary/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents da30720c01f0
children
line source
1 # SliTaz package receipt v2.
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 LICENSE="LGPL3"
9 WEB_SITE="http://www.enlightenment.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
14 BUILD_DEPENDS="shared-mime-info elementary-dev python-evas-dev python-cython \
15 eudev autoconf automake git subversion libtool"
16 SPLIT="python-elementary-dev"
18 compile_rules() {
19 ./autogen.sh &&
20 ./configure --prefix=/usr &&
21 make $MAKEFLAGS all && make install
22 }
24 genpkg_rules() {
25 case $PACKAGE in
26 python-elementary)
27 copy @std
28 DEPENDS="elementary python-evas"
29 TAGS="e enlightenment python"
30 ;;
31 python-elementary-dev)
32 copy @dev
33 DEPENDS="python-elementary elementary-dev python-evas-dev"
34 ;;
35 esac
36 }