wok annotate sshfs-fuse/receipt @ rev 19976

sshfs-fuse: update wget
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 11 16:43:30 2017 +0200 (2017-06-11)
parents c03f68de51be
children 515fba1abfd7
rev   line source
pascal@914 1 # SliTaz package receipt.
pascal@914 2
pascal@914 3 PACKAGE="sshfs-fuse"
pascal@19975 4 VERSION="2.9"
pascal@914 5 CATEGORY="system-tools"
pascal@914 6 SHORT_DESC="SSH Filesystem implemented with FUSE."
pascal@914 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@19976 9 TARBALL="sshfs-$VERSION.tar.gz"
pascal@19626 10 WEB_SITE="https://github.com/libfuse/sshfs"
pascal@19976 11 WGET_URL="$WEB_SITE/releases/download/sshfs-$VERSION/$TARBALL"
pankso@16381 12 HOST_ARCH="i486 arm"
pascal@17131 13 PROVIDE="rsshfs sshfs"
pascal@17141 14 TAGS="ssh"
pascal@914 15
pascal@19670 16 DEPENDS="fuse ssh sftp-server glib"
pascal@19670 17 SUGGESTED="openssh"
pascal@19627 18 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config autoconf automake libtool"
pascal@15000 19
pascal@914 20 # Rules to configure and make the package.
pascal@914 21 compile_rules()
pascal@914 22 {
pascal@19627 23 libtoolize --force
pascal@19627 24 aclocal
pascal@19627 25 autoheader
pascal@19627 26 automake --force-missing --add-missing
pascal@19627 27 autoconf
pascal@914 28 ./configure --prefix=/usr \
pascal@1514 29 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1514 30 make &&
pascal@15000 31 make DESTDIR=$DESTDIR install
pascal@914 32 }
pascal@914 33
pascal@914 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@914 35 genpkg_rules()
pascal@914 36 {
pascal@19626 37 mkdir -p $fs/usr $install/usr/share/doc
pascal@15000 38 cp -a $install/usr/bin $fs/usr
pascal@16756 39 cp -a $stuff/rsshfs $fs/usr/bin
pascal@19626 40 cp $src/FAQ* $install/usr/share/doc
pascal@914 41 }