wok rev 21261

updated libmtp and libmtp-dev (1.1.6 -> 1.1.16)
author Hans-G?nter Theisgen
date Fri Apr 12 12:59:42 2019 +0100 (2019-04-12)
parents 09922ce0d6ae
children b66d4e1a2b41
files libmtp-dev/receipt libmtp/receipt
line diff
     1.1 --- a/libmtp-dev/receipt	Fri Apr 12 12:45:02 2019 +0100
     1.2 +++ b/libmtp-dev/receipt	Fri Apr 12 12:59:42 2019 +0100
     1.3 @@ -1,21 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libmtp-dev"
     1.7 -VERSION="1.1.6"
     1.8 +VERSION="1.1.16"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)"
    1.11 +SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP) - development files."
    1.12  MAINTAINER="keupont@no-log.org"
    1.13  LICENSE="LGPL2.1"
    1.14  WEB_SITE="http://libmtp.sourceforge.net/"
    1.15 +
    1.16  WANTED="libmtp"
    1.17 -
    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 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.25 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 +
    1.28 +	cp -a $install/usr/lib/*.*a		$fs/usr/lib
    1.29 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.30 +	cp -a $install/usr/include		$fs/usr
    1.31  }
     2.1 --- a/libmtp/receipt	Fri Apr 12 12:45:02 2019 +0100
     2.2 +++ b/libmtp/receipt	Fri Apr 12 12:59:42 2019 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="libmtp"
     2.7 -VERSION="1.1.6"
     2.8 +VERSION="1.1.16"
     2.9  CATEGORY="system-tools"
    2.10 -SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)"
    2.11 +SHORT_DESC="LGPL library implementation of the Media Transfer Protocol (MTP)."
    2.12  MAINTAINER="keupont@no-log.org"
    2.13  LICENSE="LGPL2.1"
    2.14  WEB_SITE="http://libmtp.sourceforge.net/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18  
    2.19 @@ -17,15 +18,16 @@
    2.20  compile_rules()
    2.21  {
    2.22  	./configure --disable-mtpz $CONFIGURE_ARGS &&
    2.23 -	make && make install
    2.24 +	make -j 1 &&
    2.25 +	make install
    2.26  }
    2.27  
    2.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.29  genpkg_rules()
    2.30  {
    2.31 -	mkdir -p $fs/usr/lib $fs/etc/udev
    2.32 +	mkdir -p $fs/usr/lib
    2.33 +	mkdir -p $fs/etc/udev
    2.34  
    2.35 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.36 -	cp -a $install/lib/udev/rules.d $fs/etc/udev
    2.37 +	cp -a $install/usr/lib/*.so*		$fs/usr/lib
    2.38 +	cp -a $install/usr/lib/udev/rules.d	$fs/etc/udev
    2.39  }
    2.40 -