wok rev 24580

updated fuse and fuse-dev (2.9.9 -> 3.10.5)
author Hans-G?nter Theisgen
date Sun Feb 27 16:54:07 2022 +0100 (2022-02-27)
parents be9fc3c4c575
children efe7f633e352
files fuse-dev/receipt fuse/description.txt fuse/receipt
line diff
     1.1 --- a/fuse-dev/receipt	Sun Feb 27 11:43:07 2022 +0000
     1.2 +++ b/fuse-dev/receipt	Sun Feb 27 16:54:07 2022 +0100
     1.3 @@ -1,22 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fuse-dev"
     1.7 -VERSION="2.9.9"
     1.8 +VERSION="3.10.5"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="Fuse Filsystem devel files"
    1.11 +SHORT_DESC="Fuse Filsystem - development files."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WEB_SITE="http://fuse.sourceforge.net/"
    1.15 +WEB_SITE="https://github.com/libfuse/libfuse"
    1.16 +
    1.17 +DEPENDS="fuse pkg-config"
    1.18 +WANTED="fuse"
    1.19 +
    1.20  HOST_ARCH="i486 arm"
    1.21  
    1.22 -WANTED="fuse"
    1.23 -DEPENDS="fuse pkg-config"
    1.24 -
    1.25  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.26  genpkg_rules()
    1.27  {
    1.28 -	mkdir -p $fs/usr/lib
    1.29 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.30 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.31 -	cp -a $install/usr/include $fs/usr
    1.32 +	cook_copy_folders	include
    1.33 +	cook_copy_folders	pkgconfig
    1.34 +	# 3.10.5 not supplied
    1.35 +#	cook_copy_files		*.*a
    1.36  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/fuse/description.txt	Sun Feb 27 16:54:07 2022 +0100
     2.3 @@ -0,0 +1,7 @@
     2.4 +FUSE (Filesystem in Userspace) is an interface for userspace programs
     2.5 +to export a filesystem to the Linux kernel.
     2.6 +The FUSE project consists of two components:
     2.7 +the fuse kernel module (maintained in the regular kernel repositories)
     2.8 +and the libfuse userspace library (contained in this package).
     2.9 +Libfuse provides the reference implementation for communicating with
    2.10 +the FUSE kernel module.
     3.1 --- a/fuse/receipt	Sun Feb 27 11:43:07 2022 +0000
     3.2 +++ b/fuse/receipt	Sun Feb 27 16:54:07 2022 +0100
     3.3 @@ -1,15 +1,20 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="fuse"
     3.7 -VERSION="2.9.9"
     3.8 +VERSION="3.10.5"
     3.9  CATEGORY="system-tools"
    3.10 +TAGS="filesystem"
    3.11  SHORT_DESC="Fuse Filsystem in user space."
    3.12  MAINTAINER="pankso@slitaz.org"
    3.13  LICENSE="GPL2"
    3.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.15 -WEB_SITE="http://fuse.sourceforge.net/"
    3.16 -WGET_URL="https://github.com/libfuse/libfuse/releases/download/fuse-$VERSION/$TARBALL"
    3.17 -TAGS="filesystem"
    3.18 +WEB_SITE="https://github.com/libfuse/libfuse"
    3.19 +
    3.20 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    3.21 +WGET_URL="$WEB_SITE/releases/download/$PACKAGE-$VERSION/$TARBALL"
    3.22 +
    3.23 +DEPENDS="gcc83-lib-base"
    3.24 +BUILD_DEPENDS="gcc83 meson ninja udev-dev"
    3.25 +
    3.26  HOST_ARCH="i486 arm"
    3.27  
    3.28  current_version()
    3.29 @@ -21,18 +26,22 @@
    3.30  # Rules to configure and make the package.
    3.31  compile_rules()
    3.32  {
    3.33 -	./configure \
    3.34 -		$CONFIGURE_ARGS &&
    3.35 -	make && make install
    3.36 +	export	CC=gcc-83
    3.37 +	export	CXX=g++-83
    3.38 +
    3.39 +	mkdir	_build
    3.40 +	cd	_build
    3.41 +	meson	..		\
    3.42 +		--prefix=/usr &&
    3.43 +	ninja &&
    3.44 +	ninja install
    3.45  }
    3.46  
    3.47  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.48  genpkg_rules()
    3.49  {
    3.50 -	mkdir -p $fs/usr/lib
    3.51 -	cp -a $install/dev $fs
    3.52 -	cp -a $install/sbin $fs
    3.53 -	cp -a $install/usr/bin $fs/usr
    3.54 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.55 +	cook_copy_folders	dev
    3.56 +	cook_copy_folders	bin
    3.57 +	cp -a $install/usr/sbin	$fs
    3.58 +	cook_copy_files		*.so*
    3.59  }
    3.60 -