wok view python-erppeek/receipt @ rev 25436

Up bacon (4.5), clex (4.7), rcssmin (1.1.1), remind (04.00.03)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 31 16:18:16 2022 +0000 (20 months ago)
parents dd9b5a434fac
children
line source
1 # SliTaz package receipt.
3 PACKAGE="python-erppeek"
4 VERSION="1.7.1"
5 CATEGORY="development"
6 SHORT_DESC="Versatile tool for browsing Odoo / OpenERP data."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 SOURCE="ERPpeek"
10 WEB_SITE="https://pypi.python.org/pypi/$SOURCE/$VERSION/"
11 REPOLOGY="python:erppeek"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
16 DEPENDS="python"
17 BUILD_DEPENDS="python python-setuptools"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - https://pypi.org/project/$SOURCE/ 2>/dev/null | \
23 sed "/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-||;s|.tar.*||;q"
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 python setup.py \
30 install \
31 --prefix=/usr \
32 --root=$DESTDIR
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_folders bin
39 cook_copy_folders lib
40 }