wok view e2fsprogs/receipt @ rev 12481

Rename linux-util-ng to util-linux in all packages
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 23 16:30:27 2012 +0200 (2012-04-23)
parents 4c752152fba2
children 2662eed28d15
line source
1 # SliTaz package receipt.
3 PACKAGE="e2fsprogs"
4 VERSION="1.41.14"
5 CATEGORY="base-system"
6 SHORT_DESC="Filesystem utilities for use with ext2 and ext3 (without fsck*)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://e2fsprogs.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="libcomerr util-linux-blkid util-linux-ng-uuid"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --with-root-prefix="" \
20 --enable-elf-shlibs \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS
23 make && make install &&
24 make install-libs
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share/locale
31 cp -a $_pkg/sbin $fs
32 cp -a $_pkg/lib $fs
33 cp -a $_pkg/etc $fs
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/sbin $fs/usr
36 cp -a $_pkg/usr/lib/*.so $fs/usr/lib
37 cat $stuff/*.files-list | while read file; do
38 rm -f $fs$file
39 done
40 # Remove fsck provided by Busybox and blkid by util-linux.
41 rm $fs/sbin/fsck* $fs/sbin/blkid
42 rm $fs/lib/libblkid* $fs/usr/lib/libblkid*
43 # Remove uuid files provided by util-linux.
44 rm $fs/usr/sbin/uuidd $fs/usr/bin/uuidgen
45 rm $fs/lib/libuuid* $fs/usr/lib/libuuid*
46 }
48 # Overlap busybox
49 pre_install()
50 {
51 rm -f $1/sbin/findfs
52 rm -f $1/sbin/tune2fs
53 }
55 post_remove()
56 {
57 ln -s /bin/busybox $1/sbin/findfs
58 ln -s /bin/busybox $1/sbin/tune2fs
59 }