wok annotate curlftpfs/receipt @ rev 1277

Add: libexif (images info manipulation)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Aug 18 14:14:53 2008 +0200 (2008-08-18)
parents 6ae6d5090b55
children 52dc4b48ed81
rev   line source
erjo@460 1 # SliTaz package receipt.
erjo@460 2
erjo@460 3 PACKAGE="curlftpfs"
erjo@460 4 VERSION="0.9.1"
erjo@460 5 CATEGORY="system-tools"
erjo@460 6 SHORT_DESC="Using FUSE to access FTP servers."
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@460 8 DEPENDS="fuse curl"
erjo@460 9 BUILD_DEPENDS="fuse fuse-dev curl curl-dev"
erjo@460 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@460 11 WEB_SITE="http://curlftpfs.sourceforge.net/"
erjo@460 12 WGET_URL="http://downloads.sourceforge.net/curlftpfs/$TARBALL"
erjo@460 13
erjo@460 14 # Rules to configure and make the package.
erjo@460 15 compile_rules()
erjo@460 16 {
erjo@460 17 cd $src
erjo@460 18 ./configure --prefix=/usr $CONFIGURE_ARGS
erjo@460 19 make
erjo@460 20 make DESTDIR=$PWD/_pkg install
erjo@460 21 }
erjo@460 22
erjo@460 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@460 24 genpkg_rules()
erjo@460 25 {
erjo@460 26 mkdir -p $fs/usr
erjo@460 27 cp -a $_pkg/usr/bin $fs/usr
erjo@460 28 strip -s $fs/usr/bin/*
erjo@460 29 }
erjo@460 30