wok view sshfs-fuse/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents f08fe4855be4
children 0e34a8ff8bcd
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="SSH Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="sshfs-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/libfuse/sshfs"
11 WGET_URL="$WEB_SITE/archive/refs/tags/$TARBALL"
12 HOST_ARCH="i486 arm"
13 PROVIDE="rsshfs sshfs"
14 TAGS="ssh"
16 DEPENDS="fuse2 ssh sftp-server glib"
17 SUGGESTED="afuse"
18 BUILD_DEPENDS="fuse2-dev gettext glib-dev pkg-config autoconf automake libtool"
20 current_version()
21 {
22 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
23 sed '/archive.*tar/!d;s|.*/sshfs-\(.*\).tar.*|\1|;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 libtoolize --force
30 aclocal
31 autoheader
32 automake --force-missing --add-missing
33 autoconf
34 ./configure --prefix=/usr \
35 --mandir=/usr/share/man $CONFIGURE_ARGS &&
36 make &&
37 make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr
44 cp -a $install/usr/bin $fs/usr
45 cp -a $stuff/rsshfs $fs/usr/bin
46 }