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