wok-next annotate mountlo/receipt @ rev 21175

rsh-redone: fix function names
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 14 16:29:51 2019 +0200 (2019-04-14)
parents 8e1b2a143eb3
children
rev   line source
al@20481 1 # SliTaz package receipt v2.
pascal@5237 2
pascal@5237 3 PACKAGE="mountlo"
pascal@5237 4 VERSION="0.6"
pascal@5237 5 CATEGORY="system-tools"
al@21020 6 SHORT_DESC="Loopback filesystem mount implemented with FUSE"
pascal@5237 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@20949 9 WEB_SITE="https://github.com/libfuse"
al@20481 10
pascal@5237 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20481 12 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
pascal@14337 13 EXTRA_SOURCE_FILES="$PACKAGE-i386-$VERSION.tar.gz"
pascal@5237 14
al@20481 15 compile_rules() {
al@20513 16 [ -f $SRC/$PACKAGE-i386-$VERSION.tar.gz ] ||
al@21020 17 wget $SF_MIRROR/fuse/$PACKAGE-i386-$VERSION.tar.gz \
al@20513 18 -P $SRC
pascal@5237 19 if [ ! -f mountlo-$VERSION/mountlo ]; then
al@20513 20 tar xzf $SRC/$PACKAGE-i386-$VERSION.tar.gz
pascal@5237 21 fi
al@20481 22
al@21020 23 install -Dm755 mountlo-$VERSION/mountlo $install/usr/bin/mountlo
pascal@5237 24 }
pascal@5237 25
al@20481 26 genpkg_rules() {
al@20481 27 copy @std
al@20481 28 TAGS="filesystem"
pascal@5237 29 }