wok-6.x rev 23242
updated nilfs-utils and nilfs-utils-dev (2.2.7 -> 2.2.8)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 25 09:18:53 2020 +0100 (2020-03-25) |
parents | 3f496ebee343 |
children | fc660476a31b |
files | nilfs-utils-dev/receipt nilfs-utils/receipt |
line diff
1.1 --- a/nilfs-utils-dev/receipt Wed Mar 25 09:09:26 2020 +0100 1.2 +++ b/nilfs-utils-dev/receipt Wed Mar 25 09:18:53 2020 +0100 1.3 @@ -1,20 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="nilfs-utils-dev" 1.7 -VERSION="2.2.7" 1.8 +VERSION="2.2.8" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="NILFS Filesystem development. files" 1.11 +SHORT_DESC="NILFS Filesystem - development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2 LGPL2.1" 1.14 WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" 1.15 -WANTED="nilfs-utils" 1.16 1.17 DEPENDS="nilfs-utils" 1.18 +WANTED="nilfs-utils" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr/ 1.25 - cp -a $install/usr/lib/*a $fs/usr/lib/ 1.26 + 1.27 + cp -a $install/usr/include $fs/usr 1.28 + cp -a $install/usr/lib/*a $fs/usr/lib 1.29 }
2.1 --- a/nilfs-utils/receipt Wed Mar 25 09:09:26 2020 +0100 2.2 +++ b/nilfs-utils/receipt Wed Mar 25 09:18:53 2020 +0100 2.3 @@ -1,24 +1,26 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="nilfs-utils" 2.7 -VERSION="2.2.7" 2.8 +VERSION="2.2.8" 2.9 CATEGORY="system-tools" 2.10 SHORT_DESC="NILFS Filesystem user space tools." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2 LGPL2.1" 2.13 +WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.16 -WEB_SITE="https://github.com/nilfs-dev/nilfs-utils" 2.17 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 2.18 2.19 -DEPENDS="util-linux-mount util-linux-blkid util-linux-uuid" 2.20 -BUILD_DEPENDS="wget autoconf automake libtool util-linux-mount-dev \ 2.21 -util-linux-blkid-dev util-linux-uuid-dev" 2.22 +DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid" 2.23 +BUILD_DEPENDS="autoconf automake libtool util-linux-blkid-dev util-linux-mount-dev 2.24 + util-linux-uuid-dev" 2.25 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 - ./autogen.sh 2.30 - ./configure --prefix=/usr \ 2.31 + ./autogen.sh && 2.32 + ./configure \ 2.33 + --prefix=/usr \ 2.34 $CONFIGURE_ARGS && 2.35 make && 2.36 make DESTDIR=$DESTDIR install 2.37 @@ -28,9 +30,10 @@ 2.38 genpkg_rules() 2.39 { 2.40 mkdir -p $fs/usr/lib 2.41 - cp -a $install/etc $fs/ 2.42 - cp -a $install/sbin $fs/ 2.43 - cp -a $install/usr/bin $fs/usr/ 2.44 - cp -a $install/usr/sbin $fs/usr/ 2.45 - cp -a $install/usr/lib/*.so* $fs/usr/lib/ 2.46 + 2.47 + cp -a $install/etc $fs 2.48 + cp -a $install/sbin $fs 2.49 + cp -a $install/usr/bin $fs/usr 2.50 + cp -a $install/usr/sbin $fs/usr 2.51 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.52 }