wok view sshfs-fuse/receipt @ rev 16321

Add qxmpp, kqoauth
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 10 03:44:48 2014 +0300 (2014-04-10)
parents 380ffe05937a
children f498b54a20cd
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="SSH Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
11 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
13 DEPENDS="fuse openssh glib"
14 BUILD_DEPENDS="fuse-dev gettext glib glib-dev pkg-config"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }