wok diff avfs/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 0e0f59b97f93
children f1922233bc3a
line diff
     1.1 --- a/avfs/receipt	Sat Feb 09 15:44:16 2019 +0100
     1.2 +++ b/avfs/receipt	Sun Jun 14 23:18:03 2020 -0400
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="avfs"
     1.7 -VERSION="1.0.6"
     1.8 +VERSION="1.1.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="A virtual Filesystem implemented with FUSE."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 -WEB_SITE="http://avf.sourceforge.net/"
    1.14 +WEB_SITE="https://sourceforge.net/projects/avf/"
    1.15  
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17  WGET_URL="$SF_MIRROR/avf/$PACKAGE/$VERSION/$TARBALL"
    1.18 @@ -17,10 +17,9 @@
    1.19  # Rules to configure and make the package.
    1.20  compile_rules()
    1.21  {
    1.22 -	cd $src
    1.23 -	./configure \
    1.24 -		--prefix=/usr \
    1.25 -		--enable-fuse \
    1.26 +	./configure		\
    1.27 +		--prefix=/usr	\
    1.28 +		--enable-fuse	\
    1.29  		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31  	make DESTDIR=$DESTDIR install
    1.32 @@ -30,8 +29,9 @@
    1.33  genpkg_rules()
    1.34  {
    1.35  	mkdir -p $fs/usr/lib
    1.36 -	cp -a $install/usr/bin $fs/usr
    1.37 -#	cp -a $install/usr/sbin $fs/usr
    1.38 -	cp -a $install/usr/lib/avfs $fs/usr/lib
    1.39 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 +
    1.41 +	cp -a $install/usr/bin		$fs/usr
    1.42 +#	cp -a $install/usr/sbin		$fs/usr
    1.43 +	cp -a $install/usr/lib/avfs	$fs/usr/lib
    1.44 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.45  }