wok-next rev 9033
Fixed httpfs-fuse.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Mar 03 17:13:53 2011 +0000 (2011-03-03) |
parents | b1c161e563ff |
children | 4e196db993fd |
files | httpfs-fuse-static/receipt httpfs-fuse/receipt |
line diff
1.1 --- a/httpfs-fuse-static/receipt Thu Mar 03 22:35:38 2011 +0100 1.2 +++ b/httpfs-fuse-static/receipt Thu Mar 03 17:13:53 2011 +0000 1.3 @@ -13,7 +13,7 @@ 1.4 # Rules to gen a SliTaz package suitable for Tazpkg. 1.5 genpkg_rules() 1.6 { 1.7 - mkdir -p $fs/usr/share/boot 1.8 - cp -a $WOK/$WANTED/httpfs_with_static_binaries-$VERSION/static_uclibc/httpfs \ 1.9 - $fs/usr/share/boot/httpfs-static 1.10 + mkdir -p $fs/usr 1.11 + cp -a $WOK/$WANTED/install/usr/share \ 1.12 + $fs/usr 1.13 }
2.1 --- a/httpfs-fuse/receipt Thu Mar 03 22:35:38 2011 +0100 2.2 +++ b/httpfs-fuse/receipt Thu Mar 03 17:13:53 2011 +0000 2.3 @@ -16,20 +16,16 @@ 2.4 # Rules to configure and make the package. 2.5 compile_rules() 2.6 { 2.7 - mkdir $src 2.8 - for i in *; do 2.9 - case "$i" in 2.10 - receipt|process.log|taz|$(basename $src));; 2.11 - *) mv $i $src 2.12 - esac 2.13 - done 2.14 cd $src 2.15 - . ./make_httpfs && cp httpfs $DESTDIR 2.16 + mkdir -p $DESTDIR/usr/bin \ 2.17 + $DESTDIR/usr/share/boot 2.18 + . ./make_httpfs && cp -a httpfs $DESTDIR/usr/bin && 2.19 + cp -a static_uclibc/httpfs $DESTDIR/usr/share/boot/httpfs-static 2.20 } 2.21 2.22 # Rules to gen a SliTaz package suitable for Tazpkg. 2.23 genpkg_rules() 2.24 { 2.25 - mkdir -p $fs/usr/bin 2.26 - cp -a $_pkg/httpfs $fs/usr/bin 2.27 + mkdir -p $fs/usr 2.28 + cp -a $_pkg/usr/bin $fs/usr 2.29 }