wok view extundelete/receipt @ rev 20235

busybox: add arch (uname -m alias)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 05 15:52:59 2018 +0100 (2018-03-05)
parents 775714eeb4c8
children 304e84c72408
line source
1 # SliTaz package receipt.
3 PACKAGE="extundelete"
4 VERSION="0.2.4"
5 CATEGORY="base-system"
6 SHORT_DESC="Recover deleted files from an ext3 or ext4 partition."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://extundelete.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/extundelete/$TARBALL"
13 DEPENDS="e2fsprogs gcc-lib-base"
14 BUILD_DEPENDS="e2fsprogs-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's/*inode;/inodebuf;/' src/block.c
20 ./configure LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lcom_err" \
21 -prefix=/usr $CONFIGURE_ARGS &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/usr $fs
29 }