wok view httpfs-fuse/receipt @ rev 6317

Fixed typo in ghostscript.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Sep 17 02:20:38 2010 +0000 (2010-09-17)
parents 0c827ca320aa
children 69fad0d6b8b4
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"
14 TAGS="filesystem"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir $src
20 for i in *; do
21 case "$i" in
22 receipt|process.log|taz|$(basename $src));;
23 *) mv $i $src
24 esac
25 done
26 cd $src
27 . ./make_httpfs
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/bin
34 cp -a $src/httpfs $fs/usr/bin
35 }