wok diff fuse-rofs/receipt @ rev 21178

pam_ldap, asciiquarium: update website
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 01 19:33:51 2019 +0200 (2019-04-01)
parents
children 89c8d8b6cf48
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/fuse-rofs/receipt	Mon Apr 01 19:33:51 2019 +0200
     1.3 @@ -0,0 +1,28 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="fuse-rofs"
     1.7 +HASH="ce809a5df82da363a80742e3969eace2f349fa29"
     1.8 +VERSION="${HASH:0:7}"
     1.9 +CATEGORY="system-tools"
    1.10 +SHORT_DESC="The Read-Only File System for FUSE."
    1.11 +MAINTAINER="pascal.bellard@slitaz.org"
    1.12 +LICENSE="GPL2"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="https://github.com/cognusion/fuse-rofs"
    1.15 +WGET_URL="$WEB_SITE/archive/$HASH.tar.gz"
    1.16 +
    1.17 +DEPENDS="fuse"
    1.18 +BUILD_DEPENDS="wget fuse-dev"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	gcc -o rofs -Wall -ansi -W -std=c99 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -lfuse rofs.c
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.   
    1.27 +genpkg_rules()                                      
    1.28 +{
    1.29 +	mkdir -p $fs/usr/sbin
    1.30 +	cp $src/rofs $fs/usr/sbin/mount.rofs 
    1.31 +}