wok-6.x rev 25379
updated uget (2.2.1 -> 2.2.3)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jul 30 15:37:46 2022 +0100 (2022-07-30) |
parents | 72e28a828ce2 |
children | 6e377a452304 |
files | uget-lang/receipt uget/description.txt uget/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/uget-lang/receipt Sat Jul 30 15:37:46 2022 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="uget-lang" 1.7 +VERSION="2.2.3" 1.8 +CATEGORY="localization" 1.9 +SHORT_DESC="Download manager using gtk+ and libcurl - localised messages." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="LGPL2.1" 1.12 +WEB_SITE="https://ugetdm.com/" 1.13 + 1.14 +WANTED="uget" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + cook_copy_folders locale 1.20 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/uget/description.txt Sat Jul 30 15:37:46 2022 +0100 2.3 @@ -0,0 +1,5 @@ 2.4 +UGet (formerly called urlgfe) is a download manager. 2.5 +It allows you to classify download, and allows you to import 2.6 +download from HTML files. 2.7 +Every category has an independent configuration that can be 2.8 +inherited by each download in that category.
3.1 --- a/uget/receipt Sat Jul 30 15:14:33 2022 +0100 3.2 +++ b/uget/receipt Sat Jul 30 15:37:46 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="uget" 3.7 -VERSION="2.2.1" 3.8 +VERSION="2.2.3" 3.9 CATEGORY="network" 3.10 SHORT_DESC="Download manager using gtk+ and libcurl." 3.11 MAINTAINER="devl547@gmail.com" 3.12 @@ -9,8 +9,9 @@ 3.13 WEB_SITE="https://web.archive.org/web/20220621150801/https://sourceforge.net/projects/urlget/" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="$SF_MIRROR/urlget/$TARBALL" 3.17 +WGET_URL="$SF_MIRROR/urlget/$PACKAGE-$VERSION-1.tar.gz" 3.18 3.19 +SUGGESTED="uget-lang" 3.20 DEPENDS="curl glib gtk+3 pcre" 3.21 BUILD_DEPENDS="curl-dev glib-dev gtk+3-dev intltool pcre-dev" 3.22 3.23 @@ -24,25 +25,24 @@ 3.24 # Rules to configure and make the package. 3.25 compile_rules() 3.26 { 3.27 + # 2.2.3 unrecognised: 3.28 + # --with-gtk3 3.29 + 3.30 ./configure \ 3.31 --prefix=/usr \ 3.32 --sysconfdir=/etc \ 3.33 --disable-gstreamer \ 3.34 --disable-notify \ 3.35 - --with-gtk3 \ 3.36 $CONFIGURE_ARGS \ 3.37 LDFLAGS='-Wl,-O1 -Wl,--as-needed' && 3.38 - make -j2 -s && 3.39 - make DESTDIR=$DESTDIR install 3.40 + make -s && 3.41 + make install DESTDIR=$DESTDIR 3.42 } 3.43 3.44 # Rules to gen a SliTaz package suitable for Tazpkg. 3.45 genpkg_rules() 3.46 { 3.47 - mkdir -p $fs/usr/share 3.48 - 3.49 - cp -a $install/usr/bin $fs/usr/ 3.50 - cp -a $install/usr/share/applications/ $fs/usr/share 3.51 - cp -a $install/usr/share/icons/ $fs/usr/share 3.52 - cp -a $install/usr/share/sounds/ $fs/usr/share 3.53 + cook_copy_folders bin 3.54 + cook_copy_folders icons 3.55 + cook_copy_folders sounds 3.56 }