wok view fuse/receipt @ rev 20291

elilo: mkdir $install/usr/share (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 16 11:16:22 2018 +0200 (2018-04-16)
parents 18595cbe422e
children ae73fb35f0cf
line source
1 # SliTaz package receipt.
3 PACKAGE="fuse"
4 VERSION="2.9.3"
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="$SF_MIRROR/$PACKAGE/$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 }