wok-next annotate e2tools/receipt @ rev 21724

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