wok diff e2fsprogs/receipt @ rev 23824
Up openssh (8.3p1)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 28 13:18:28 2020 +0000 (2020-05-28) |
parents | 2f4e0c4137e9 |
children | ef1efd2c8811 |
line diff
1.1 --- a/e2fsprogs/receipt Tue Mar 26 11:04:34 2019 -0400 1.2 +++ b/e2fsprogs/receipt Thu May 28 13:18:28 2020 +0000 1.3 @@ -1,19 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="e2fsprogs" 1.7 -VERSION="1.44.5" 1.8 +VERSION="1.45.5" 1.9 CATEGORY="base-system" 1.10 -SHORT_DESC="Filesystem utilities for use with ext2/ext3/ext4 (without fsck*)." 1.11 +SHORT_DESC="Filesystem utilities for use with ext2, ext3 and ext4 (without fsck*)." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="http://e2fsprogs.sourceforge.net/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://e2fsprogs.sourceforge.net/" 1.18 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.19 -HOST_ARCH="i486 arm" 1.20 1.21 DEPENDS="libcomerr util-linux-blkid util-linux-uuid" 1.22 -BUILD_DEPENDS="texinfo util-linux-blkid-dev util-linux-uuid-dev \ 1.23 -coreutils-operations" 1.24 +BUILD_DEPENDS="coreutils-operations texinfo util-linux-blkid-dev 1.25 + util-linux-uuid-dev" 1.26 + 1.27 +HOST_ARCH="i486 arm" 1.28 1.29 # Handle cross compilation. 1.30 case "$ARCH" in 1.31 @@ -30,14 +32,17 @@ 1.32 zcat $stuff/e2fsprogs.no.64bit.by.default.diff.gz | patch -p1 || exit 1 1.33 1.34 sed -i 's|\$ac_MKDIR_P&|mkdir -p\&|' configure 1.35 - mkdir ../build && cd ../build 1.36 - $src/configure \ 1.37 - --prefix=/usr \ 1.38 - --with-root-prefix="" \ 1.39 - --enable-elf-shlibs \ 1.40 - --sysconfdir=/etc \ 1.41 + 1.42 + mkdir ../build && 1.43 + cd ../build && 1.44 + $src/configure \ 1.45 + --prefix=/usr \ 1.46 + --with-root-prefix="" \ 1.47 + --enable-elf-shlibs \ 1.48 + --sysconfdir=/etc \ 1.49 $CONFIGURE_ARGS 1.50 - make && make install && 1.51 + make && 1.52 + make install && 1.53 make install-libs 1.54 } 1.55 1.56 @@ -45,15 +50,18 @@ 1.57 genpkg_rules() 1.58 { 1.59 mkdir -p $fs/usr/lib 1.60 - cp -a $install/sbin $fs 1.61 - cp -a $install/lib $fs 1.62 - cp -a $install/etc $fs 1.63 - cp -a $install/usr/bin $fs/usr 1.64 - cp -a $install/usr/sbin $fs/usr 1.65 + 1.66 + cp -a $install/sbin $fs 1.67 + cp -a $install/lib $fs 1.68 + cp -a $install/etc $fs 1.69 + cp -a $install/usr/bin $fs/usr 1.70 + cp -a $install/usr/sbin $fs/usr 1.71 ( cd $fs ; for i in lib/*.so.?; do ln -s /$i usr/$i ; done ) 1.72 - cat $stuff/*.files-list | while read file; do 1.73 + cat $stuff/*.files-list | while read file 1.74 + do 1.75 rm -f ${fs}$file 1.76 - done 1.77 + done 1.78 + 1.79 # Remove fsck provided by Busybox. 1.80 rm $fs/sbin/fsck* 1.81 }