wok view httpfs-fuse/receipt @ rev 2025

Up: enlightenment (0.16.999.050) - Snapshot 2008-09-25
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 08 22:35:58 2009 +0100 (2009-01-08)
parents
children c6ccd6bc43b1
line source
1 # SliTaz package receipt.
3 PACKAGE="httpfs-fuse"
4 VERSION="2.06.08.26"
5 CATEGORY="system-tools"
6 SHORT_DESC="HTTP Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="fuse"
9 BUILD_DEPENDS="fuse-dev"
10 SOURCE="httpfs_with_static_binaries"
11 TARBALL="${SOURCE}_$VERSION.tar.gz"
12 WEB_SITE="http://httpfs.sourceforge.net/"
13 WGET_URL="$SF_MIRROR/httpfs/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir $src
19 for i in *; do
20 case "$i" in
21 receipt|process.log|taz|$(basename $src));;
22 *) mv $i $src
23 esac
24 done
25 cd $src
26 . ./make_httpfs
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 cp -a $src/httpfs $fs/usr/bin
34 }