wok view e2tools/receipt @ rev 22920

gtk+3 with cups disabled
author Hans-G?nter Theisgen
date Mon Feb 24 16:38:08 2020 +0100 (2020-02-24)
parents 28518eba2c9c
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="e2tools"
4 VERSION="0.0.16.4"
5 CATEGORY="base-system"
6 SHORT_DESC="Read, write, and manipulate files in an ext2 or ext3 filesystem."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/ndim/$PACKAGE"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
14 DEPENDS="e2fsprogs"
15 BUILD_DEPENDS="autoconf automake e2fsprogs-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
21 autoreconf -vis . &&
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/* $fs
33 }