wok view fuse/receipt @ rev 23936

syslinux/isohybrid: force GPT detection (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 09 12:46:01 2020 +0000 (2020-09-09)
parents f498b54a20cd
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="2.9.9"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fuse Filsystem in user space."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fuse.sourceforge.net/"
11 WGET_URL="https://github.com/libfuse/libfuse/releases/download/fuse-$VERSION/$TARBALL"
12 TAGS="filesystem"
13 HOST_ARCH="i486 arm"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $install/dev $fs
28 cp -a $install/sbin $fs
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }