wok view python-elementary/receipt @ rev 25446

ftop: add description.txt
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 06 10:22:54 2022 +0000 (20 months ago)
parents 192db54e5c3d
children
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 LICENSE="LGPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.enlightenment.org/"
11 WGET_URL="https://web.archive.org/web/20150908092224if_/https://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
12 TAGS="e enlightenment python"
14 DEPENDS="elementary python-evas"
15 BUILD_DEPENDS="elementary-dev python-evas-dev python-cython \
16 autoconf automake git subversion libtool file"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - https://pypi.org/project/python-elementary/ 2>/dev/null | \
22 sed '/python-elementary [0-9]/!d;s|.*ry ||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./autogen.sh &&
29 ./configure --prefix=/usr &&
30 make $MAKEFLAGS all && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/usr/lib/python2.7 $fs/usr/lib
38 }