new package: add package 'sshfs-fuse'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-12-13 12:34:40 +01:00
parent 81c5cedd9a
commit c3ce683f27
4 changed files with 34 additions and 1 deletions

View File

@ -5,7 +5,7 @@ PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.openelec.tv"
PKG_URL=""
PKG_DEPENDS="samba nfs-utils connman"
PKG_DEPENDS="samba nfs-utils sshfs-fuse connman"
PKG_BUILD_DEPENDS="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="tools"

View File

@ -0,0 +1,11 @@
#!/bin/sh
. config/options $1
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--enable-shared \
make

View File

@ -0,0 +1,6 @@
#!/bin/sh
. config/options $1
mkdir -p $INSTALL/usr/bin
cp $PKG_BUILD/sshfs $INSTALL/usr/bin

View File

@ -0,0 +1,16 @@
PKG_NAME="sshfs-fuse"
PKG_VERSION="2.2"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://fuse.sourceforge.net/sshfs.html"
PKG_URL="http://sourceforge.net/projects/fuse/files/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS="glib fuse"
PKG_BUILD_DEPENDS="toolchain glib fuse"
PKG_PRIORITY="optional"
PKG_SECTION="system"
PKG_SHORTDESC="sshfs-fuse: A filesystem client based on the SSH File Transfer Protocol"
PKG_LONGDESC="This is a filesystem client based on the SSH File Transfer Protocol. Since most SSH servers already support this protocol it is very easy to set up: i.e. on the server side there's nothing to do. On the client side mounting the filesystem is as easy as logging into the server with ssh."
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"