wok annotate littlefs-fuse/receipt @ rev 20405

Add littlefs-fuse (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 09 22:25:53 2018 +0200 (2018-07-09)
parents 81ea1c83d3b1
children e38bb0907e93
rev   line source
pascal@20404 1 # SliTaz package receipt.
pascal@20404 2
pascal@20404 3 PACKAGE="littlefs-fuse"
pascal@20404 4 VERSION="1.2"
pascal@20404 5 CATEGORY="base-system"
pascal@20404 6 SHORT_DESC="A FUSE wrapper that puts the littlefs in user-space"
pascal@20404 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20404 8 LICENSE="MIT"
pascal@20404 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20404 10 WEB_SITE="https://github.com/ARMmbed/littlefs-fuse"
pascal@20404 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@20404 12
pascal@20405 13 DEPENDS="fuse"
pascal@20404 14 BUILD_DEPENDS="fuse-dev"
pascal@20404 15
pascal@20404 16 # Rules to configure and make the package.
pascal@20404 17 compile_rules()
pascal@20404 18 {
pascal@20405 19 make
pascal@20404 20 }
pascal@20404 21
pascal@20404 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20404 23 genpkg_rules()
pascal@20404 24 {
pascal@20405 25 mkdir -p $fs/usr/bin
pascal@20405 26 cp $src/lfs $fs/usr/bin
pascal@20404 27 }