# HG changeset patch # User Hans-G?nter Theisgen # Date 1559748650 -3600 # Node ID b35f2c5109374d38860e23b9df99783950fe394a # Parent cfdb128f6428f1e00337a09006ad037cc9c249c2 updated posixovl (1.2 -> 1.3) diff -r cfdb128f6428 -r b35f2c510937 posixovl/receipt --- a/posixovl/receipt Wed Jun 05 16:15:15 2019 +0100 +++ b/posixovl/receipt Wed Jun 05 16:30:50 2019 +0100 @@ -1,18 +1,19 @@ # SliTaz package receipt. PACKAGE="posixovl" -VERSION="1.2" +VERSION="1.3" CATEGORY="system-tools" -SHORT_DESC="FUSE file system that provides POSIX functionality" +TAGS="filesystem" +SHORT_DESC="FUSE file system that provides POSIX functionality." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://sourceforge.net/projects/posixovl/" + TARBALL="$PACKAGE-$VERSION.tar.xz" -WEB_SITE="http://$PACKAGE.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -TAGS="filesystem" -DEPENDS="fuse attr" -BUILD_DEPENDS="autoconf automake fuse-dev attr-dev" +DEPENDS="attr fuse" +BUILD_DEPENDS="attr-dev autoconf automake fuse-dev" # Rules to configure and make the package. compile_rules() @@ -23,16 +24,21 @@ 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 sed -i 's/cb->ll.size/0/' posixovl.c sed -i 's|attr/xattr.h|sys/xattr.h|' posixovl.c configure* + sh autogen.sh - ./configure --prefix=/usr --mandir=/usr/share/man \ - $CONFIGURE_ARGS && + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && make } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/sbin $install/usr/share/man/man1 - cp $src/mount.posixovl $fs/usr/sbin - cp $src/posixovl.1 $install/usr/share/man/man1 + mkdir -p $fs/usr/sbin + mkdir -p $install/usr/share/man/man1 + + cp $src/mount.posixovl $fs/usr/sbin + cp $src/posixovl.1 $install/usr/share/man/man1 }