# HG changeset patch # User Hans-G?nter Theisgen # Date 1647962940 -3600 # Node ID 08fec96a32adcfe6ddc15420a47600a05d909a59 # Parent 3e62030539e2d95347676f83435fa191bcc94a1b updated libmtp, libmtp-dev and mtp-tools (1.1.17 -> 1.1.19) diff -r 3e62030539e2 -r 08fec96a32ad libmtp-dev/receipt --- a/libmtp-dev/receipt Tue Mar 22 15:17:43 2022 +0000 +++ b/libmtp-dev/receipt Tue Mar 22 16:29:00 2022 +0100 @@ -1,22 +1,18 @@ # SliTaz package receipt. PACKAGE="libmtp-dev" -VERSION="1.1.17" +VERSION="1.1.19" CATEGORY="development" SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP) - development files." MAINTAINER="keupont@no-log.org" LICENSE="LGPL2.1" -WEB_SITE="http://libmtp.sourceforge.net/" +WEB_SITE="https://sourceforge.net/projects/libmtp/" +DEPENDS="libmtp libusb-dev pkg-config" WANTED="libmtp" -DEPENDS="libmtp libusb-dev pkg-config" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + get_dev_files } diff -r 3e62030539e2 -r 08fec96a32ad libmtp/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libmtp/description.txt Tue Mar 22 16:29:00 2022 +0100 @@ -0,0 +1,2 @@ +Libmtp is a LGPL library implementation of the Media Transfer Protocol (MTP), +a superset of the Picture Transfer Protocol (PTP). diff -r 3e62030539e2 -r 08fec96a32ad libmtp/receipt --- a/libmtp/receipt Tue Mar 22 15:17:43 2022 +0000 +++ b/libmtp/receipt Tue Mar 22 16:29:00 2022 +0100 @@ -1,12 +1,12 @@ # SliTaz package receipt. PACKAGE="libmtp" -VERSION="1.1.17" +VERSION="1.1.19" CATEGORY="system-tools" SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)." MAINTAINER="keupont@no-log.org" LICENSE="LGPL2.1" -WEB_SITE="http://libmtp.sourceforge.net/" +WEB_SITE="https://sourceforge.net/projects/libmtp/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" @@ -14,6 +14,8 @@ DEPENDS="libusb udev" BUILD_DEPENDS="libusb-dev" +# @maintainer: Please update also mtp-tools + # What is the latest version available today? current_version() { @@ -28,15 +30,15 @@ ./configure \ --disable-mtpz \ $CONFIGURE_ARGS && - make -j 1 && + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { + mkdir -p $fs/etc/udev mkdir -p $fs/usr/lib - mkdir -p $fs/etc/udev cp -a $install/usr/lib/*.so* $fs/usr/lib cp -a $install/usr/lib/udev/rules.d $fs/etc/udev diff -r 3e62030539e2 -r 08fec96a32ad mtp-tools/receipt --- a/mtp-tools/receipt Tue Mar 22 15:17:43 2022 +0000 +++ b/mtp-tools/receipt Tue Mar 22 16:29:00 2022 +0100 @@ -1,20 +1,22 @@ # SliTaz package receipt. PACKAGE="mtp-tools" -VERSION="1.1.17" +VERSION="1.1.19" CATEGORY="system-tools" -SHORT_DESC="Media Transfer Protocol (MTP) utilities" +SHORT_DESC="Media Transfer Protocol (MTP) - utilities." MAINTAINER="erjo@slitaz.org" LICENSE="LGPL2.1" -WEB_SITE="http://libmtp.sourceforge.net/" -WANTED="libmtp" +WEB_SITE="https://sourceforge.net/projects/libmtp/" DEPENDS="libmtp" +WANTED="libmtp" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/lib/udev $fs/usr/bin - cp -a $install/usr/lib/udev/mtp-probe $fs/lib/udev - cp -a $install/usr/bin $fs/usr + mkdir -p $fs/lib/udev + mkdir -p $fs/usr/bin + + cp -a $install/usr/lib/udev/mtp-probe $fs/lib/udev + cp -a $install/usr/bin $fs/usr }