wok view tahoe-lafs/receipt @ rev 25603

Update some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 18 11:43:32 2023 +0000 (10 months ago)
parents 04410c6a9726
children
line source
1 # SliTaz package receipt.
3 PACKAGE="tahoe-lafs"
4 VERSION="1.17.1"
5 CATEGORY="system-tools"
6 TAGS="filesystem backup"
7 SHORT_DESC="Cloud storage system."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/tahoe-lafs/tahoe-lafs"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/refs/tags/$TARBALL"
15 DEPENDS="pycrypto pyopenssl python python-foolscap python-mock python-pyasn1
16 python-pycryptopp python-simplejson python-zfec twisted zopeinterface"
17 BUILD_DEPENDS="gmp-dev openssl-dev python-dev python-setuptools"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \
23 sed '/tag\//!d;s|.*tag/[a-z-]*||;s|".*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 python setup.py build &&
30 python setup.py install --root=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }