wok diff nilfs-utils/receipt @ rev 23681

Up libsvn (1.13.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 15:38:37 2020 +0000 (2020-04-26)
parents 401224c936cc
children 5ea0ce1cecc0
line diff
     1.1 --- a/nilfs-utils/receipt	Mon Feb 12 13:54:33 2018 +0100
     1.2 +++ b/nilfs-utils/receipt	Sun Apr 26 15:38:37 2020 +0000
     1.3 @@ -1,24 +1,26 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="nilfs-utils"
     1.7 -VERSION="2.2.7"
     1.8 +VERSION="2.2.8"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="NILFS Filesystem user space tools."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2 LGPL2.1"
    1.13 +WEB_SITE="https://github.com/nilfs-dev/nilfs-utils"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="https://github.com/nilfs-dev/nilfs-utils"
    1.17  WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
    1.18  
    1.19 -DEPENDS="util-linux-mount util-linux-blkid util-linux-uuid"
    1.20 -BUILD_DEPENDS="wget autoconf automake libtool util-linux-mount-dev \
    1.21 -util-linux-blkid-dev util-linux-uuid-dev"
    1.22 +DEPENDS="util-linux-blkid util-linux-mount util-linux-uuid"
    1.23 +BUILD_DEPENDS="autoconf automake libtool util-linux-blkid-dev util-linux-mount-dev 
    1.24 +	util-linux-uuid-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	./autogen.sh
    1.30 -	./configure --prefix=/usr \
    1.31 +	./autogen.sh &&
    1.32 +	./configure		\
    1.33 +		--prefix=/usr	\
    1.34  		$CONFIGURE_ARGS &&
    1.35  	make &&
    1.36  	make DESTDIR=$DESTDIR install
    1.37 @@ -28,9 +30,10 @@
    1.38  genpkg_rules()
    1.39  {
    1.40  	mkdir -p $fs/usr/lib
    1.41 -	cp -a $install/etc $fs/
    1.42 -	cp -a $install/sbin $fs/
    1.43 -	cp -a $install/usr/bin $fs/usr/
    1.44 -	cp -a $install/usr/sbin $fs/usr/
    1.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib/
    1.46 +
    1.47 +	cp -a $install/etc		$fs
    1.48 +	cp -a $install/sbin		$fs
    1.49 +	cp -a $install/usr/bin		$fs/usr
    1.50 +	cp -a $install/usr/sbin		$fs/usr
    1.51 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.52  }