wok view littlefs-fuse/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents 323ef21d707d
children c4edaf6370ab
line source
1 # SliTaz package receipt.
3 PACKAGE="littlefs-fuse"
4 VERSION="1.2"
5 CATEGORY="base-system"
6 SHORT_DESC="A FUSE wrapper that puts the littlefs in user-space"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/ARMmbed/littlefs-fuse"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
13 DEPENDS="fuse"
14 BUILD_DEPENDS="fuse-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $install/usr/share/doc
26 cp $src/lfs $fs/usr/bin
27 cp $src/README.md $install/usr/share/doc
28 cp $src/littlefs/DESIGN.md $install/usr/share/doc
29 cp $src/littlefs/SPEC.md $install/usr/share/doc
30 }