Difference between revisions of "SSHFS"
From CBLFS
Jump to navigationJump to searchLine 13: | Line 13: | ||
=== Required === | === Required === | ||
* [[Openssh]] | * [[Openssh]] | ||
− | * [[Fuse]] | + | * [[pkg-config]] |
+ | * [[Fuse >= 2.2]] | ||
+ | * [[glib-2.0]] | ||
=== Optional === | === Optional === | ||
Line 35: | Line 37: | ||
Compile the package: | Compile the package: | ||
− | CC="gcc ${BUILD32}" ./configure --prefix=/usr && | + | PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" CC="gcc ${BUILD32}" \ |
+ | ./configure --prefix=/usr && | ||
make | make | ||
Line 56: | Line 59: | ||
Compile the package | Compile the package | ||
− | CC="gcc ${BUILD64}" ./configure --prefix=/usr | + | PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" CC="gcc ${BUILD64}" \ |
+ | ./configure --prefix=/usr | ||
make | make | ||
Revision as of 05:13, 7 September 2007
Download Source: | http://downloads.sourceforge.net/fuse/sshfs-fuse-1.8.tar.gz |
---|
Contents
Dependencies
Required
- Openssh
- pkg-config
- [[Fuse >= 2.2]]
- glib-2.0
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr make
Install the package
make install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" CC="gcc ${BUILD32}" \ ./configure --prefix=/usr && make
Install the package
make install && mv -v /usr/bin/sshfs{,-32}
N32
Compile the package:
Install the package
64Bit
Compile the package
PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" CC="gcc ${BUILD64}" \ ./configure --prefix=/usr make
Install the package
make install