wok view e2fsprogs/receipt @ rev 255

Add pcmanfm and gamin
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 24 20:35:09 2008 +0100 (2008-02-24)
parents cdac43c3f44f
children c3d8970e5eea
line source
1 # SliTaz package receipt.
3 PACKAGE="e2fsprogs"
4 VERSION="1.40.5"
5 CATEGORY="base-system"
6 SHORT_DESC="Filesystem utilities for use with ext2 and ext3."
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"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure \
17 --prefix=/usr \
18 --with-root-prefix="" \
19 --enable-elf-shlibs \
20 --disable-evms \
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 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/etc $fs/usr/lib $fs/usr/share
34 cp -a $_pkg/sbin $fs
35 cp -a $_pkg/lib $fs
36 cp -a $_pkg/etc/*.conf $fs/etc
37 cp -a $_pkg/usr/bin $fs/usr
38 cp -a $_pkg/usr/sbin $fs/usr
39 cp -ad $_pkg/usr/lib/*.so $fs/usr/lib
40 cp -a $_pkg/usr/share/et $fs/usr/share
41 cp -a $_pkg/usr/share/ss $fs/usr/share
43 # Remove fsck provided by Busybox.
44 rm -rf $fs/sbin/fsck*
45 }