wok view fuse-rofs/receipt @ rev 21534

consolekit2 modified BUILD_DEPENDS
author Hans-G?nter Theisgen
date Sun May 05 11:13:36 2019 +0100 (2019-05-05)
parents
children 89c8d8b6cf48
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse-rofs"
4 HASH="ce809a5df82da363a80742e3969eace2f349fa29"
5 VERSION="${HASH:0:7}"
6 CATEGORY="system-tools"
7 SHORT_DESC="The Read-Only File System for FUSE."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/cognusion/fuse-rofs"
12 WGET_URL="$WEB_SITE/archive/$HASH.tar.gz"
14 DEPENDS="fuse"
15 BUILD_DEPENDS="wget fuse-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 gcc -o rofs -Wall -ansi -W -std=c99 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -lfuse rofs.c
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/sbin
27 cp $src/rofs $fs/usr/sbin/mount.rofs
28 }