wok annotate sshfs-fuse/receipt @ rev 18431

open-vm-tools: add dnet dep
author Nathan Neulinger <nneul@neulinger.org>
date Mon Sep 21 22:09:23 2015 +0000 (2015-09-21)
parents f44ef80ff9e2
children 186a8b6ac51e
rev   line source
pascal@914 1 # SliTaz package receipt.
pascal@914 2
pascal@914 3 PACKAGE="sshfs-fuse"
pascal@16757 4 VERSION="2.5"
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@914 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@914 10 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
pascal@914 11 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
pankso@16381 12 HOST_ARCH="i486 arm"
pascal@17131 13 PROVIDE="rsshfs sshfs"
pascal@17141 14 TAGS="ssh"
pascal@914 15
pascal@18321 16 DEPENDS="fuse openssh sftp-server glib"
pankso@16381 17 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config"
pascal@15000 18
pascal@914 19 # Rules to configure and make the package.
pascal@914 20 compile_rules()
pascal@914 21 {
pascal@914 22 ./configure --prefix=/usr \
pascal@1514 23 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1514 24 make &&
pascal@15000 25 make DESTDIR=$DESTDIR install
pascal@914 26 }
pascal@914 27
pascal@914 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@914 29 genpkg_rules()
pascal@914 30 {
pascal@914 31 mkdir -p $fs/usr
pascal@15000 32 cp -a $install/usr/bin $fs/usr
pascal@16756 33 cp -a $stuff/rsshfs $fs/usr/bin
pascal@914 34 }