wok rev 21695

updated posixovl (1.2 -> 1.3)
author Hans-G?nter Theisgen
date Wed Jun 05 16:30:50 2019 +0100 (2019-06-05)
parents cfdb128f6428
children 8b06244cfb19
files posixovl/receipt
line diff
     1.1 --- a/posixovl/receipt	Wed Jun 05 16:15:15 2019 +0100
     1.2 +++ b/posixovl/receipt	Wed Jun 05 16:30:50 2019 +0100
     1.3 @@ -1,18 +1,19 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="posixovl"
     1.7 -VERSION="1.2"
     1.8 +VERSION="1.3"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="FUSE file system that provides POSIX functionality"
    1.11 +TAGS="filesystem"
    1.12 +SHORT_DESC="FUSE file system that provides POSIX functionality."
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="https://sourceforge.net/projects/posixovl/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.18 -WEB_SITE="http://$PACKAGE.sourceforge.net/"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20 -TAGS="filesystem"
    1.21  
    1.22 -DEPENDS="fuse attr"
    1.23 -BUILD_DEPENDS="autoconf automake fuse-dev attr-dev"
    1.24 +DEPENDS="attr fuse"
    1.25 +BUILD_DEPENDS="attr-dev autoconf automake fuse-dev"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29 @@ -23,16 +24,21 @@
    1.30  	sed -i 's/if (!S_ISREG/if (S_ISLNK(cb->ll.mode))\n\t\tcb->sb.st_size = strlen(cb->ll.target);\n\telse &/' posixovl.c
    1.31  	sed -i 's/cb->ll.size/0/' posixovl.c
    1.32  	sed -i 's|attr/xattr.h|sys/xattr.h|' posixovl.c configure*
    1.33 +
    1.34  	sh autogen.sh
    1.35 -	./configure --prefix=/usr --mandir=/usr/share/man \
    1.36 -	$CONFIGURE_ARGS &&
    1.37 +	./configure			\
    1.38 +		--prefix=/usr		\
    1.39 +		--mandir=/usr/share/man	\
    1.40 +		$CONFIGURE_ARGS &&
    1.41  	make
    1.42  }
    1.43  
    1.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.45  genpkg_rules()
    1.46  {
    1.47 -	mkdir -p $fs/usr/sbin $install/usr/share/man/man1
    1.48 -	cp $src/mount.posixovl $fs/usr/sbin
    1.49 -	cp $src/posixovl.1 $install/usr/share/man/man1
    1.50 +	mkdir -p $fs/usr/sbin
    1.51 +	mkdir -p $install/usr/share/man/man1
    1.52 +
    1.53 +	cp $src/mount.posixovl	$fs/usr/sbin
    1.54 +	cp $src/posixovl.1	$install/usr/share/man/man1
    1.55  }