wok view littlefs-fuse/receipt @ rev 20404

Up curl (7.60.0), add littlefs-fuse
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 09 21:59:01 2018 +0200 (2018-07-09)
parents
children 323ef21d707d
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 BUILD_DEPENDS="fuse-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 make &&
19 make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 }