wok annotate 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
rev   line source
pankso@34 1 # SliTaz package receipt.
pankso@34 2
pankso@34 3 PACKAGE="fuse"
pascal@23838 4 VERSION="2.9.9"
pankso@202 5 CATEGORY="system-tools"
pankso@34 6 SHORT_DESC="Fuse Filsystem in user space."
pankso@34 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pankso@34 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@34 10 WEB_SITE="http://fuse.sourceforge.net/"
pascal@23838 11 WGET_URL="https://github.com/libfuse/libfuse/releases/download/fuse-$VERSION/$TARBALL"
jozee@4936 12 TAGS="filesystem"
pankso@16381 13 HOST_ARCH="i486 arm"
pankso@34 14
pankso@34 15 # Rules to configure and make the package.
pankso@34 16 compile_rules()
pankso@34 17 {
pankso@16381 18 ./configure \
slaxemulator@13077 19 $CONFIGURE_ARGS &&
pankso@16381 20 make && make install
pankso@34 21 }
pankso@34 22
pankso@34 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@34 24 genpkg_rules()
pankso@34 25 {
pankso@34 26 mkdir -p $fs/usr/lib
pascal@15000 27 cp -a $install/dev $fs
pascal@15000 28 cp -a $install/sbin $fs
pascal@15000 29 cp -a $install/usr/bin $fs/usr
pascal@15000 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@34 31 }
pankso@34 32