wok-next view e2tools/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="e2tools"
4 VERSION="0.1.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Read, write, and manipulate files in an ext2 and ext3 filesystem"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://e2tools.github.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL"
14 BUILD_DEPENDS="e2fsprogs-dev"
16 compile_rules()
17 {
18 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
20 ./configure \
21 --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$install install
25 }
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 DEPENDS="e2fsprogs"
31 }