wok view youtube-dl-gui/receipt @ rev 25676

Update some current_version()
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 28 15:51:05 2024 +0000 (2 months ago)
parents 0262035dc1e7
children
line source
1 # SliTaz package receipt.
3 PACKAGE="youtube-dl-gui"
4 COMMIT="a2a0d6fb4907d9282c2f45a00a1e51ce23602421"
5 VERSION="20140906"
6 CATEGORY="multimedia"
7 SHORT_DESC="A cross platform front-end GUI of the popular youtube-dl written in wxPython."
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="PublicDomain"
10 WEB_SITE="https://github.com/MrS0m30n3/youtube-dl-gui"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/$COMMIT.tar.gz"
13 GENERIC_PIXMAPS="no"
15 DEPENDS="youtube-dl wxpython"
16 BUILD_DEPENDS="wget cacerts wxpython-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE/releases 2>/dev/null | \
22 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 python setup.py build
29 python setup.py install --root=$install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share/icons/hicolor
36 cp -a $install/usr/lib $fs/usr
37 find $fs -name '*.pyc' -delete
38 for size in 16x16 48x48; do
39 mkdir -p $fs/usr/share/icons/hicolor/$size/apps
40 cp -a $install/usr/share/icons/hicolor/$size/apps/*.png \
41 $fs/usr/share/icons/hicolor/$size/apps/$PACKAGE.png
42 done
43 }