wok view gentorrent/receipt @ rev 25669

Up lapack (3.12.0), less (633), libarchive (3.7.2), liblouis (3.28.0), libmicrohttpd (1.0.1), libpng (1.6.43), libssh (0.10.6), libtasn1 (4.19.0), libtirpc (1.3.4), libvpx (1.14.0), libwebp (1.3.2), logrotate (3.21.0), lua (5.4.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 25 16:11:20 2024 +0000 (3 months ago)
parents 7ae189994f37
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gentorrent"
4 VERSION="1.0.2"
5 CATEGORY="network"
6 SHORT_DESC="Creates BitTorrent metainfo files with any BitTorrent extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://tanguy.ortolo.eu/perso/pages/projets/gentorrent"
11 WGET_URL="git|git://git.ortolo.eu/gentorrent.git"
13 DEPENDS="py3k"
14 BUILD_DEPENDS="git"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - http://git.ortolo.eu/gentorrent.git/ 2>/dev/null | \
20 sed '/version\/[0-9]/!d;s|.*version/||;s|<.*||;s|.tar.*||' | sort -Vr | sed q
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin
27 cp -a $src/gentorrent.py $fs/usr/bin
28 }