wok annotate sshfs-fuse/receipt @ rev 17131

Add zssh, lrzsz
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 09 15:53:02 2014 +0200 (2014-09-09)
parents 434e78d6fa7a
children f44ef80ff9e2
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@914 14
pascal@15000 15 DEPENDS="fuse openssh glib"
pankso@16381 16 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config"
pascal@15000 17
pascal@914 18 # Rules to configure and make the package.
pascal@914 19 compile_rules()
pascal@914 20 {
pascal@914 21 ./configure --prefix=/usr \
pascal@1514 22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1514 23 make &&
pascal@15000 24 make DESTDIR=$DESTDIR install
pascal@914 25 }
pascal@914 26
pascal@914 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@914 28 genpkg_rules()
pascal@914 29 {
pascal@914 30 mkdir -p $fs/usr
pascal@15000 31 cp -a $install/usr/bin $fs/usr
pascal@16756 32 cp -a $stuff/rsshfs $fs/usr/bin
pascal@914 33 }