wok diff httpfs-fuse/receipt @ rev 3653

Add: libarchive, libarchive-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Jul 06 23:52:56 2009 +0200 (2009-07-06)
parents
children c6ccd6bc43b1
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/httpfs-fuse/receipt	Mon Jul 06 23:52:56 2009 +0200
     1.3 @@ -0,0 +1,34 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="httpfs-fuse"
     1.7 +VERSION="2.06.08.26"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="HTTP Filesystem implemented with FUSE."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +DEPENDS="fuse"
    1.12 +BUILD_DEPENDS="fuse-dev"
    1.13 +SOURCE="httpfs_with_static_binaries"
    1.14 +TARBALL="${SOURCE}_$VERSION.tar.gz"
    1.15 +WEB_SITE="http://httpfs.sourceforge.net/"
    1.16 +WGET_URL="$SF_MIRROR/httpfs/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	mkdir $src
    1.22 +	for i in *; do
    1.23 +		case "$i" in
    1.24 +		receipt|process.log|taz|$(basename $src));;
    1.25 +		*) mv $i $src
    1.26 +		esac
    1.27 +	done
    1.28 +	cd $src
    1.29 +	. ./make_httpfs
    1.30 +}
    1.31 +
    1.32 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 +genpkg_rules()
    1.34 +{
    1.35 +	mkdir -p $fs/usr/bin
    1.36 +	cp -a $src/httpfs $fs/usr/bin
    1.37 +}