wok-6.x diff libmtp/receipt @ rev 21962
updated squirrelmail-autocomplete (2.0-1.0.0 -> 3.0-1.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Oct 10 16:00:46 2019 +0100 (2019-10-10) |
parents | fadc64b65b26 |
children | 849f794ecc3b |
line diff
1.1 --- a/libmtp/receipt Fri Aug 15 00:06:08 2014 +0000 1.2 +++ b/libmtp/receipt Thu Oct 10 16:00:46 2019 +0100 1.3 @@ -1,12 +1,13 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libmtp" 1.7 -VERSION="1.1.6" 1.8 +VERSION="1.1.16" 1.9 CATEGORY="system-tools" 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)." 1.12 MAINTAINER="keupont@no-log.org" 1.13 LICENSE="LGPL2.1" 1.14 WEB_SITE="http://libmtp.sourceforge.net/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.18 1.19 @@ -17,15 +18,16 @@ 1.20 compile_rules() 1.21 { 1.22 ./configure --disable-mtpz $CONFIGURE_ARGS && 1.23 - make && make install 1.24 + make -j 1 && 1.25 + make install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 - mkdir -p $fs/usr/lib $fs/etc/udev 1.32 + mkdir -p $fs/usr/lib 1.33 + mkdir -p $fs/etc/udev 1.34 1.35 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.36 - cp -a $install/lib/udev/rules.d $fs/etc/udev 1.37 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.38 + cp -a $install/usr/lib/udev/rules.d $fs/etc/udev 1.39 } 1.40 -