# HG changeset patch # User Christopher Rogers # Date 1299172433 0 # Node ID 47623f40305b32f64c9da0a208d1906d43563f82 # Parent b1c161e563ffc0e80e818363d2028c35d2e7ee1b Fixed httpfs-fuse. diff -r b1c161e563ff -r 47623f40305b httpfs-fuse-static/receipt --- a/httpfs-fuse-static/receipt Thu Mar 03 22:35:38 2011 +0100 +++ b/httpfs-fuse-static/receipt Thu Mar 03 17:13:53 2011 +0000 @@ -13,7 +13,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share/boot - cp -a $WOK/$WANTED/httpfs_with_static_binaries-$VERSION/static_uclibc/httpfs \ - $fs/usr/share/boot/httpfs-static + mkdir -p $fs/usr + cp -a $WOK/$WANTED/install/usr/share \ + $fs/usr } diff -r b1c161e563ff -r 47623f40305b httpfs-fuse/receipt --- a/httpfs-fuse/receipt Thu Mar 03 22:35:38 2011 +0100 +++ b/httpfs-fuse/receipt Thu Mar 03 17:13:53 2011 +0000 @@ -16,20 +16,16 @@ # Rules to configure and make the package. compile_rules() { - mkdir $src - for i in *; do - case "$i" in - receipt|process.log|taz|$(basename $src));; - *) mv $i $src - esac - done cd $src - . ./make_httpfs && cp httpfs $DESTDIR + mkdir -p $DESTDIR/usr/bin \ + $DESTDIR/usr/share/boot + . ./make_httpfs && cp -a httpfs $DESTDIR/usr/bin && + cp -a static_uclibc/httpfs $DESTDIR/usr/share/boot/httpfs-static } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin - cp -a $_pkg/httpfs $fs/usr/bin + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr }