2020-05-10 11:33:10 -05:00
# Description: A set of services and modules that enable several features in VMware products for better management of, and seamless user interactions with, guests
# URL: https://github.com/vmware/open-vm-tools
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: libmspack libdnet glib
2011-08-11 17:08:12 +09:00
name=open-vm-tools
2020-05-10 11:33:10 -05:00
version=11.1.0-16036546
2011-08-11 17:08:12 +09:00
release=1
2020-05-10 11:33:10 -05:00
source=(https://github.com/vmware/$name/releases/download/stable-${version%-*}/$name-$version.tar.gz \
vmtoolsd)
2011-08-11 17:08:12 +09:00
2020-05-10 11:33:10 -05:00
build() {
2011-08-11 17:08:12 +09:00
cd $name-$version
2020-05-10 11:33:10 -05:00
./configure --prefix=/usr \
2011-08-11 17:08:12 +09:00
--without-icu \
2015-02-16 11:55:20 +09:00
--without-pam \
2020-05-10 11:33:10 -05:00
--without-x \
--without-xerces
2011-08-11 17:08:12 +09:00
make
make DESTDIR=$PKG install
2020-05-10 11:33:10 -05:00
install -o root -g root -m 0755 -D $SRC/vmtoolsd \
$PKG/etc/rc.d/vmtoolsd
2011-08-11 17:08:12 +09:00
}