wok-next rev 21390
updated open-vm-tools (10.0.0 -> 11.0.5)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 17 15:31:56 2020 +0100 (2020-04-17) |
parents | d7cbbb220e8b |
children | a53bff5e90f9 |
files | open-vm-tools/receipt |
line diff
1.1 --- a/open-vm-tools/receipt Fri Apr 17 15:23:40 2020 +0100 1.2 +++ b/open-vm-tools/receipt Fri Apr 17 15:31:56 2020 +0100 1.3 @@ -1,39 +1,42 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="open-vm-tools" 1.7 -VERSION="10.0.0-3000743" 1.8 +VERSION="11.0.5" 1.9 CATEGORY="utilities" 1.10 +TAGS="vmware kernel" 1.11 SHORT_DESC="Open VMware Tools" 1.12 -MAINTAINER="devel@slitaz.org" 1.13 +MAINTAINER="maintainer@slitaz.org" 1.14 LICENSE="GPL" 1.15 WEB_SITE="https://github.com/vmware/open-vm-tools" 1.16 1.17 TARBALL="open-vm-tools-$VERSION.tar.gz" 1.18 WGET_URL="https://github.com/vmware/open-vm-tools/archive/$TARBALL" 1.19 1.20 -BUILD_DEPENDS="autoconf automake libtool linux-source procps \ 1.21 -glib-dev libffi-dev libdnet-dev libmspack-dev openssl-dev" 1.22 +BUILD_DEPENDS="autoconf automake glib-dev libdnet-dev libffi-dev 1.23 + libmspack-dev libtool linux-source openssl-dev procps" 1.24 1.25 -compile_rules() { 1.26 +compile_rules() 1.27 +{ 1.28 cd open-vm-tools 1.29 sed -i -e "s/-Werror//" configure.ac 1.30 1.31 - autoreconf -i 1.32 - ./configure \ 1.33 - --without-kernel-modules \ 1.34 - --without-pam \ 1.35 - --without-x \ 1.36 - --without-icu \ 1.37 - --without-gtk2 \ 1.38 - --without-gtkmm \ 1.39 - --without-xmlsecurity \ 1.40 - --without-xerces \ 1.41 + autoreconf -i && 1.42 + ./configure \ 1.43 + --without-kernel-modules \ 1.44 + --without-pam \ 1.45 + --without-x \ 1.46 + --without-icu \ 1.47 + --without-gtk2 \ 1.48 + --without-gtkmm \ 1.49 + --without-xmlsecurity \ 1.50 + --without-xerces \ 1.51 $CONFIGURE_ARGS && 1.52 make && 1.53 make DESTDIR=$install install 1.54 } 1.55 1.56 -genpkg_rules() { 1.57 +genpkg_rules() 1.58 +{ 1.59 mkdir -p $fs/usr/lib 1.60 mkdir -p $fs/usr/share 1.61 mkdir -p $fs/sbin 1.62 @@ -42,27 +45,27 @@ 1.63 mkdir -p $fs/include 1.64 mkdir -p $fs/etc/init.d 1.65 1.66 - cp $stuff/vmtoolsd $fs/etc/init.d 1.67 - chmod 755 $fs/etc/init.d 1.68 + cp $stuff/vmtoolsd $fs/etc/init.d 1.69 + chmod 755 $fs/etc/init.d 1.70 1.71 - cp -a $install/etc/vmware-tools $fs/etc 1.72 + cp -a $install/etc/vmware-tools $fs/etc 1.73 1.74 # Replace with slitaz customized default network script 1.75 - cp $stuff/network $fs/etc/vmware-tools/scripts/vmware/network 1.76 - chmod 755 $fs/etc/vmware-tools/scripts/vmware/network 1.77 + cp $stuff/network $fs/etc/vmware-tools/scripts/vmware/network 1.78 + chmod 755 $fs/etc/vmware-tools/scripts/vmware/network 1.79 1.80 - cp -a $install/sbin $fs/sbin 1.81 + cp -a $install/sbin $fs/sbin 1.82 1.83 - cp -a $install/usr/include $fs/usr 1.84 - cp -a $install/usr/bin $fs/usr 1.85 - cp -a $install/usr/sbin $fs/usr 1.86 + cp -a $install/usr/include $fs/usr 1.87 + cp -a $install/usr/bin $fs/usr 1.88 + cp -a $install/usr/sbin $fs/usr 1.89 1.90 - cp -a $install/usr/share/open-vm-tools $fs/usr/share 1.91 + cp -a $install/usr/share/open-vm-tools $fs/usr/share 1.92 1.93 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.94 - cp -a $install/usr/lib/*.a $fs/usr/lib 1.95 - cp -a $install/usr/lib/open-vm-tools $fs/usr/lib 1.96 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.97 - DEPENDS="shutdown glib libffi libmspack procps libdnet" 1.98 - TAGS="vmware kernel" 1.99 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.100 + cp -a $install/usr/lib/*.a $fs/usr/lib 1.101 + cp -a $install/usr/lib/open-vm-tools $fs/usr/lib 1.102 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.103 + 1.104 + DEPENDS="glib libdnet libffi libmspack procps shutdown" 1.105 }