wok view curlftpfs/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 8f3d2ddaece7
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="curlftpfs"
4 VERSION="0.9.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Using FUSE to access FTP servers."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://curlftpfs.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/curlftpfs/$TARBALL"
13 DEPENDS="fuse curl glib zlib"
14 BUILD_DEPENDS="fuse fuse-dev curl curl-dev glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }