# HG changeset patch # User Pascal Bellard # Date 1544956909 -3600 # Node ID b21f0b31e0c271f0b71cc182a7b278059243b588 # Parent 019632316cf5de38eb102a78e5ad74f77bfed372 xfi, xfw, cryptkeeper: (not so) dirty hack diff -r 019632316cf5 -r b21f0b31e0c2 cryptkeeper/receipt --- a/cryptkeeper/receipt Sun Dec 16 10:41:06 2018 +0100 +++ b/cryptkeeper/receipt Sun Dec 16 11:41:49 2018 +0100 @@ -26,5 +26,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cook_copy_folders usr 2> /dev/null || true + cp -a $install/usr $fs } diff -r 019632316cf5 -r b21f0b31e0c2 libvips/receipt --- a/libvips/receipt Sun Dec 16 10:41:06 2018 +0100 +++ b/libvips/receipt Sun Dec 16 11:41:49 2018 +0100 @@ -14,7 +14,7 @@ libexif openexr liboil" BUILD_DEPENDS="wget cacerts pkg-config gtk-doc libtool swig \ gobject-introspection-dev fftw-dev lcms-dev libpng-dev jpeg-dev \ -imagemagick-dev tiff-dev zlib-dev libexif-dev" +imagemagick-dev tiff-dev zlib-dev libexif-dev file" # Rules to configure and make the package. compile_rules() diff -r 019632316cf5 -r b21f0b31e0c2 mpv/receipt --- a/mpv/receipt Sun Dec 16 10:41:06 2018 +0100 +++ b/mpv/receipt Sun Dec 16 11:41:49 2018 +0100 @@ -25,7 +25,7 @@ xorg-libXau-dev xorg-libXdmcp-dev libpng-dev glib-dev pcre-dev libxml2-dev \ libtasn1-dev nettle-dev gmp-dev libtinfo xorg-libXrender-dev \ xorg-libXdamage-dev xorg-libXfixes-dev libxcb-dev xorg-libXxf86vm-dev udev-dev \ -ffmpeg-dev lame-dev" +ffmpeg-dev lame-dev libgnutls" # Rules to configure and make the package. compile_rules() diff -r 019632316cf5 -r b21f0b31e0c2 xfi/receipt --- a/xfi/receipt Sun Dec 16 10:41:06 2018 +0100 +++ b/xfi/receipt Sun Dec 16 11:41:49 2018 +0100 @@ -15,7 +15,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin - cp -a $install/usr/bin/$PACKAGE $fs/usr/bin - copy_generic_files 2> /dev/null || true + for i in /usr/bin /usr/share/pixmaps /usr/share/applications; do + mkdir -p $fs$i + cp -a $install$i/$PACKAGE* $fs$i + done } diff -r 019632316cf5 -r b21f0b31e0c2 xfw/receipt --- a/xfw/receipt Sun Dec 16 10:41:06 2018 +0100 +++ b/xfw/receipt Sun Dec 16 11:41:49 2018 +0100 @@ -16,7 +16,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin - cp -a $install/usr/bin/$PACKAGE $fs/usr/bin - copy_generic_files 2> /dev/null || true + for i in /usr/bin /usr/share/pixmaps /usr/share/applications; do + mkdir -p $fs$i + cp -a $install$i/$PACKAGE* $fs$i + done }