wok view mtd-utils/receipt @ rev 23902

Add SECRET_FILES variable
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 01 16:19:51 2020 +0000 (2020-08-01)
parents 0814625776d5
children a3b6dd3aac6f
line source
1 # SliTaz package receipt.
3 PACKAGE="mtd-utils"
4 VERSION="2.1.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Memory Technology Device Tools (including jff2)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.linux-mtd.infradead.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="ftp://ftp.infradead.org/pub/mtd-utils/$TARBALL"
14 DEPENDS="lzo util-linux-uuid zlib"
15 BUILD_DEPENDS="acl-dev file lzo-dev openssl-dev util-linux-uuid-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 -without-zstd &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/sbin $fs/usr
31 }