wok-next diff open-vm-tools/receipt @ rev 21039

mariadb 10.3.10
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 09 03:18:57 2018 +0200 (2018-11-09)
parents d43bf7aae921
children 366726af530d
line diff
     1.1 --- a/open-vm-tools/receipt	Wed Mar 21 15:58:17 2018 +0200
     1.2 +++ b/open-vm-tools/receipt	Fri Nov 09 03:18:57 2018 +0200
     1.3 @@ -3,27 +3,23 @@
     1.4  PACKAGE="open-vm-tools"
     1.5  VERSION="10.0.0-3000743"
     1.6  CATEGORY="utilities"
     1.7 -TAGS="vmware kernel"
     1.8  SHORT_DESC="Open VMware Tools"
     1.9 -MAINTAINER="nobody@slitaz.org"
    1.10 +MAINTAINER="devel@slitaz.org"
    1.11  LICENSE="GPL"
    1.12 +WEB_SITE="https://github.com/vmware/open-vm-tools"
    1.13 +
    1.14  TARBALL="open-vm-tools-$VERSION.tar.gz"
    1.15 -WEB_SITE="https://github.com/vmware/open-vm-tools"
    1.16  WGET_URL="https://github.com/vmware/open-vm-tools/archive/$TARBALL"
    1.17 -HOST_ARCH="i486 x86_64"
    1.18  
    1.19 -DEPENDS="shutdown glib libffi libmspack procps libdnet"
    1.20  BUILD_DEPENDS="autoconf automake libtool linux-source procps \
    1.21  glib-dev libffi-dev libdnet-dev libmspack-dev openssl-dev"
    1.22  
    1.23 -
    1.24 -# Rules to configure and make the package.
    1.25 -compile_rules()
    1.26 -{
    1.27 +compile_rules() {
    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 +	./configure \
    1.34  		--without-kernel-modules \
    1.35  		--without-pam \
    1.36  		--without-x \
    1.37 @@ -32,13 +28,12 @@
    1.38  		--without-gtkmm \
    1.39  		--without-xmlsecurity \
    1.40  		--without-xerces \
    1.41 -                $CONFIGURE_ARGS &&
    1.42 -        make && make DESTDIR=$install install
    1.43 +		$CONFIGURE_ARGS &&
    1.44 +	make &&
    1.45 +	make DESTDIR=$install install
    1.46  }
    1.47  
    1.48 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.49 -genpkg_rules()
    1.50 -{
    1.51 +genpkg_rules() {
    1.52  	mkdir -p $fs/usr/lib
    1.53  	mkdir -p $fs/usr/share
    1.54  	mkdir -p $fs/sbin
    1.55 @@ -68,4 +63,6 @@
    1.56  	cp -a $install/usr/lib/*.a $fs/usr/lib
    1.57  	cp -a $install/usr/lib/open-vm-tools $fs/usr/lib
    1.58  	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.59 +	DEPENDS="shutdown glib libffi libmspack procps libdnet"
    1.60 +	TAGS="vmware kernel"
    1.61  }