wok view e2fsprogs/receipt @ rev 7120

Up: slitaz-configs (4.0) with new cooking artwork
author Christophe Lincoln <pankso@slitaz.org>
date Thu Nov 04 21:29:09 2010 +0100 (2010-11-04)
parents 41df03920955
children 53e1828da719
line source
1 # SliTaz package receipt.
3 PACKAGE="e2fsprogs"
4 VERSION="1.41.12"
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-ng-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 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS
25 make
26 make DESTDIR=$PWD/_pkg install
27 make DESTDIR=$PWD/_pkg install-libs
28 cp ../stuff/*.files-list .
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share/locale
35 cp -a $_pkg/sbin $fs
36 cp -a $_pkg/lib $fs
37 cp -a $_pkg/etc $fs
38 cp -a $_pkg/usr/bin $fs/usr
39 cp -a $_pkg/usr/sbin $fs/usr
40 cp -ad $_pkg/usr/lib/*.so $fs/usr/lib
41 cat $src/*.files-list | while read file; do
42 rm -f $fs$file
43 done
44 # Remove fsck provided by Busybox and blkid by util-linux-ng.
45 rm $fs/sbin/fsck* $fs/sbin/blkid
46 rm $fs/lib/libblkid* $fs/usr/lib/libblkid*
47 # Remove uuid files provided by util-linux-ng.
48 rm $fs/usr/sbin/uuidd $fs/usr/bin/uuidgen
49 rm $fs/lib/libuuid* $fs/usr/lib/libuuid*
50 # Package all mysql pkgs
51 for i in $(cd $WOK; ls -d e2fsprogs-* libcomerr*)
52 do
53 tazwok genpkg $i
54 done
55 }