wok view sshfs-fuse/receipt @ rev 1605

Add perl-spreadsheet-writeexcel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 19 11:13:52 2008 +0000 (2008-10-19)
parents a3129d854cf2
children 8c4a70e18847
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="SSH Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="fuse openssh"
9 BUILD_DEPENDS="fuse-dev gettext glib glib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
12 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }