wok view littlefs-fuse/receipt @ rev 22999

updated leptonica and leptonica-dev again (1.78.0 -> 1.79.0)
author Hans-G?nter Theisgen
date Mon Mar 02 15:57:03 2020 +0100 (2020-03-02)
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 }