wok rev 24808
updated libmtp, libmtp-dev and mtp-tools (1.1.17 -> 1.1.19)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Mar 22 16:29:00 2022 +0100 (2022-03-22) |
parents | 3e62030539e2 |
children | 9d5f9f1ab1eb |
files | libmtp-dev/receipt libmtp/description.txt libmtp/receipt mtp-tools/receipt |
line diff
1.1 --- a/libmtp-dev/receipt Tue Mar 22 15:17:43 2022 +0000 1.2 +++ b/libmtp-dev/receipt Tue Mar 22 16:29:00 2022 +0100 1.3 @@ -1,22 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libmtp-dev" 1.7 -VERSION="1.1.17" 1.8 +VERSION="1.1.19" 1.9 CATEGORY="development" 1.10 SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP) - development files." 1.11 MAINTAINER="keupont@no-log.org" 1.12 LICENSE="LGPL2.1" 1.13 -WEB_SITE="http://libmtp.sourceforge.net/" 1.14 +WEB_SITE="https://sourceforge.net/projects/libmtp/" 1.15 1.16 +DEPENDS="libmtp libusb-dev pkg-config" 1.17 WANTED="libmtp" 1.18 -DEPENDS="libmtp libusb-dev pkg-config" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 - mkdir -p $fs/usr/lib 1.24 - 1.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 + get_dev_files 1.29 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libmtp/description.txt Tue Mar 22 16:29:00 2022 +0100 2.3 @@ -0,0 +1,2 @@ 2.4 +Libmtp is a LGPL library implementation of the Media Transfer Protocol (MTP), 2.5 +a superset of the Picture Transfer Protocol (PTP).
3.1 --- a/libmtp/receipt Tue Mar 22 15:17:43 2022 +0000 3.2 +++ b/libmtp/receipt Tue Mar 22 16:29:00 2022 +0100 3.3 @@ -1,12 +1,12 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libmtp" 3.7 -VERSION="1.1.17" 3.8 +VERSION="1.1.19" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)." 3.11 MAINTAINER="keupont@no-log.org" 3.12 LICENSE="LGPL2.1" 3.13 -WEB_SITE="http://libmtp.sourceforge.net/" 3.14 +WEB_SITE="https://sourceforge.net/projects/libmtp/" 3.15 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 3.18 @@ -14,6 +14,8 @@ 3.19 DEPENDS="libusb udev" 3.20 BUILD_DEPENDS="libusb-dev" 3.21 3.22 +# @maintainer: Please update also mtp-tools 3.23 + 3.24 # What is the latest version available today? 3.25 current_version() 3.26 { 3.27 @@ -28,15 +30,15 @@ 3.28 ./configure \ 3.29 --disable-mtpz \ 3.30 $CONFIGURE_ARGS && 3.31 - make -j 1 && 3.32 + make && 3.33 make install 3.34 } 3.35 3.36 # Rules to gen a SliTaz package suitable for Tazpkg. 3.37 genpkg_rules() 3.38 { 3.39 + mkdir -p $fs/etc/udev 3.40 mkdir -p $fs/usr/lib 3.41 - mkdir -p $fs/etc/udev 3.42 3.43 cp -a $install/usr/lib/*.so* $fs/usr/lib 3.44 cp -a $install/usr/lib/udev/rules.d $fs/etc/udev
4.1 --- a/mtp-tools/receipt Tue Mar 22 15:17:43 2022 +0000 4.2 +++ b/mtp-tools/receipt Tue Mar 22 16:29:00 2022 +0100 4.3 @@ -1,20 +1,22 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="mtp-tools" 4.7 -VERSION="1.1.17" 4.8 +VERSION="1.1.19" 4.9 CATEGORY="system-tools" 4.10 -SHORT_DESC="Media Transfer Protocol (MTP) utilities" 4.11 +SHORT_DESC="Media Transfer Protocol (MTP) - utilities." 4.12 MAINTAINER="erjo@slitaz.org" 4.13 LICENSE="LGPL2.1" 4.14 -WEB_SITE="http://libmtp.sourceforge.net/" 4.15 -WANTED="libmtp" 4.16 +WEB_SITE="https://sourceforge.net/projects/libmtp/" 4.17 4.18 DEPENDS="libmtp" 4.19 +WANTED="libmtp" 4.20 4.21 # Rules to gen a SliTaz package suitable for Tazpkg. 4.22 genpkg_rules() 4.23 { 4.24 - mkdir -p $fs/lib/udev $fs/usr/bin 4.25 - cp -a $install/usr/lib/udev/mtp-probe $fs/lib/udev 4.26 - cp -a $install/usr/bin $fs/usr 4.27 + mkdir -p $fs/lib/udev 4.28 + mkdir -p $fs/usr/bin 4.29 + 4.30 + cp -a $install/usr/lib/udev/mtp-probe $fs/lib/udev 4.31 + cp -a $install/usr/bin $fs/usr 4.32 }