wok diff xz-dev/receipt @ rev 24780
transmission: autoconf 2.70+ bug workaround
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Mar 19 20:17:02 2022 +0000 (2022-03-19) |
parents | 46f4f0519187 |
children | c3e3440b68fb |
line diff
1.1 --- a/xz-dev/receipt Mon May 07 20:45:28 2018 +0200 1.2 +++ b/xz-dev/receipt Sat Mar 19 20:17:02 2022 +0000 1.3 @@ -1,23 +1,26 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="xz-dev" 1.7 -VERSION="5.2.4" 1.8 +VERSION="5.2.5" 1.9 CATEGORY="base-system" 1.10 -SHORT_DESC="XZ and liblzma devel files" 1.11 +SHORT_DESC="xz and liblzma development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="PublicDomain LGPL2.1 GPL2 GPL3" 1.14 -WEB_SITE="http://tukaani.org/xz" 1.15 +WEB_SITE="https://tukaani.org/xz" 1.16 + 1.17 PROVIDE="liblzma-dev" 1.18 +DEPENDS="xz pkg-config" 1.19 WANTED="xz" 1.20 + 1.21 HOST_ARCH="i486 arm x86_64" 1.22 1.23 -DEPENDS="xz pkg-config" 1.24 - 1.25 # Rules to gen a SliTaz package suitable for Tazpkg. 1.26 genpkg_rules() 1.27 { 1.28 - mkdir -p $fs/usr/bin $fs/usr/lib 1.29 - cp -a $install/usr/include $fs/usr 1.30 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.31 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.32 + mkdir -p $fs/usr/bin 1.33 + mkdir -p $fs/usr/lib 1.34 + 1.35 + cp -a $install/usr/include $fs/usr 1.36 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.37 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.38 }