wok-next annotate sshfs-fuse/receipt @ rev 20975

Close the chain: python and python3 both have upgradeable setuptools and pip
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Sep 23 04:37:56 2018 +0300 (2018-09-23)
parents 474eb4a6385a
children d5aab818505e
rev   line source
al@20472 1 # SliTaz package receipt v2.
pascal@914 2
pascal@914 3 PACKAGE="sshfs-fuse"
al@20472 4 VERSION="3.3.1"
pascal@914 5 CATEGORY="system-tools"
al@20472 6 SHORT_DESC="SSH Filesystem implemented with FUSE"
pascal@914 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@20472 9 WEB_SITE="https://github.com/libfuse/sshfs"
pascal@914 10
al@20472 11 TARBALL="sshfs-$VERSION.tar.xz"
al@20472 12 WGET_URL="https://github.com/libfuse/sshfs/releases/download/sshfs-$VERSION/$TARBALL"
pascal@15000 13
al@20472 14 BUILD_DEPENDS="fuse3-dev"
al@20513 15 # gettext glib-dev"
al@20472 16
al@20472 17 compile_rules() {
al@20472 18 ./configure $CONFIGURE_ARGS &&
pascal@1514 19 make &&
al@20472 20 make install
pascal@914 21 }
pascal@914 22
al@20472 23 genpkg_rules() {
al@20472 24 copy @std
al@20529 25 DEPENDS="fuse3 openssh glib"
al@20472 26 PROVIDE="rsshfs sshfs"
al@20472 27 TAGS="ssh"
pascal@914 28 }