# HG changeset patch # User Hans-G?nter Theisgen # Date 1585124333 -3600 # Node ID dc1fa2db351e05307ac2556f381b957e05e392c6 # Parent 3f496ebee3432512ec0a22a0f0ea947df4fc869d updated nilfs-utils and nilfs-utils-dev (2.2.7 -> 2.2.8) diff -r 3f496ebee343 -r dc1fa2db351e nilfs-utils-dev/receipt --- a/nilfs-utils-dev/receipt Wed Mar 25 09:09:26 2020 +0100 +++ b/nilfs-utils-dev/receipt Wed Mar 25 09:18:53 2020 +0100 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="nilfs-utils-dev" -VERSION="2.2.7" +VERSION="2.2.8" CATEGORY="development" -SHORT_DESC="NILFS Filesystem development. files" +SHORT_DESC="NILFS Filesystem - development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 LGPL2.1" WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" -WANTED="nilfs-utils" DEPENDS="nilfs-utils" +WANTED="nilfs-utils" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr/ - cp -a $install/usr/lib/*a $fs/usr/lib/ + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*a $fs/usr/lib } diff -r 3f496ebee343 -r dc1fa2db351e nilfs-utils/receipt --- a/nilfs-utils/receipt Wed Mar 25 09:09:26 2020 +0100 +++ b/nilfs-utils/receipt Wed Mar 25 09:18:53 2020 +0100 @@ -1,24 +1,26 @@ # SliTaz package receipt. PACKAGE="nilfs-utils" -VERSION="2.2.7" +VERSION="2.2.8" CATEGORY="system-tools" SHORT_DESC="NILFS Filesystem user space tools." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2 LGPL2.1" +WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" -DEPENDS="util-linux-mount util-linux-blkid util-linux-uuid" -BUILD_DEPENDS="wget autoconf automake libtool util-linux-mount-dev \ -util-linux-blkid-dev util-linux-uuid-dev" +DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid" +BUILD_DEPENDS="autoconf automake libtool util-linux-blkid-dev util-linux-mount-dev + util-linux-uuid-dev" # Rules to configure and make the package. compile_rules() { - ./autogen.sh - ./configure --prefix=/usr \ + ./autogen.sh && + ./configure \ + --prefix=/usr \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -28,9 +30,10 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/etc $fs/ - cp -a $install/sbin $fs/ - cp -a $install/usr/bin $fs/usr/ - cp -a $install/usr/sbin $fs/usr/ - cp -a $install/usr/lib/*.so* $fs/usr/lib/ + + cp -a $install/etc $fs + cp -a $install/sbin $fs + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib }