wok rev 20596
xfi, xfw, cryptkeeper: (not so) dirty hack
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 16 11:41:49 2018 +0100 (2018-12-16) |
parents | 019632316cf5 |
children | fe0c19fa259e |
files | cryptkeeper/receipt libvips/receipt mpv/receipt xfi/receipt xfw/receipt |
line diff
1.1 --- a/cryptkeeper/receipt Sun Dec 16 10:41:06 2018 +0100 1.2 +++ b/cryptkeeper/receipt Sun Dec 16 11:41:49 2018 +0100 1.3 @@ -26,5 +26,5 @@ 1.4 # Rules to gen a SliTaz package suitable for Tazpkg. 1.5 genpkg_rules() 1.6 { 1.7 - cook_copy_folders usr 2> /dev/null || true 1.8 + cp -a $install/usr $fs 1.9 }
2.1 --- a/libvips/receipt Sun Dec 16 10:41:06 2018 +0100 2.2 +++ b/libvips/receipt Sun Dec 16 11:41:49 2018 +0100 2.3 @@ -14,7 +14,7 @@ 2.4 libexif openexr liboil" 2.5 BUILD_DEPENDS="wget cacerts pkg-config gtk-doc libtool swig \ 2.6 gobject-introspection-dev fftw-dev lcms-dev libpng-dev jpeg-dev \ 2.7 -imagemagick-dev tiff-dev zlib-dev libexif-dev" 2.8 +imagemagick-dev tiff-dev zlib-dev libexif-dev file" 2.9 2.10 # Rules to configure and make the package. 2.11 compile_rules()
3.1 --- a/mpv/receipt Sun Dec 16 10:41:06 2018 +0100 3.2 +++ b/mpv/receipt Sun Dec 16 11:41:49 2018 +0100 3.3 @@ -25,7 +25,7 @@ 3.4 xorg-libXau-dev xorg-libXdmcp-dev libpng-dev glib-dev pcre-dev libxml2-dev \ 3.5 libtasn1-dev nettle-dev gmp-dev libtinfo xorg-libXrender-dev \ 3.6 xorg-libXdamage-dev xorg-libXfixes-dev libxcb-dev xorg-libXxf86vm-dev udev-dev \ 3.7 -ffmpeg-dev lame-dev" 3.8 +ffmpeg-dev lame-dev libgnutls" 3.9 3.10 # Rules to configure and make the package. 3.11 compile_rules()
4.1 --- a/xfi/receipt Sun Dec 16 10:41:06 2018 +0100 4.2 +++ b/xfi/receipt Sun Dec 16 11:41:49 2018 +0100 4.3 @@ -15,7 +15,8 @@ 4.4 # Rules to gen a SliTaz package suitable for Tazpkg. 4.5 genpkg_rules() 4.6 { 4.7 - mkdir -p $fs/usr/bin 4.8 - cp -a $install/usr/bin/$PACKAGE $fs/usr/bin 4.9 - copy_generic_files 2> /dev/null || true 4.10 + for i in /usr/bin /usr/share/pixmaps /usr/share/applications; do 4.11 + mkdir -p $fs$i 4.12 + cp -a $install$i/$PACKAGE* $fs$i 4.13 + done 4.14 }
5.1 --- a/xfw/receipt Sun Dec 16 10:41:06 2018 +0100 5.2 +++ b/xfw/receipt Sun Dec 16 11:41:49 2018 +0100 5.3 @@ -16,7 +16,8 @@ 5.4 # Rules to gen a SliTaz package suitable for Tazpkg. 5.5 genpkg_rules() 5.6 { 5.7 - mkdir -p $fs/usr/bin 5.8 - cp -a $install/usr/bin/$PACKAGE $fs/usr/bin 5.9 - copy_generic_files 2> /dev/null || true 5.10 + for i in /usr/bin /usr/share/pixmaps /usr/share/applications; do 5.11 + mkdir -p $fs$i 5.12 + cp -a $install$i/$PACKAGE* $fs$i 5.13 + done 5.14 }