Matt Housh
19f9221358
Fixes CVE-2023-34058 and CVE-2023-34059, see the following for details: https://github.com/advisories/GHSA-h5hf-5wcj-6hmf https://www.vmware.com/security/advisories/VMSA-2023-0024.html https://github.com/advisories/GHSA-q6p8-m5f4-4vmp
24 lines
715 B
Plaintext
24 lines
715 B
Plaintext
# 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 glib rpcsvc-proto fuse
|
|
|
|
name=open-vm-tools
|
|
version=12.3.5-22544099
|
|
release=1
|
|
source=(https://github.com/vmware/$name/releases/download/stable-${version%-*}/$name-$version.tar.gz \
|
|
vmtoolsd)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--without-icu \
|
|
--without-x \
|
|
--without-xerces
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -o root -g root -m 0755 -D $SRC/vmtoolsd \
|
|
$PKG/etc/rc.d/vmtoolsd
|
|
}
|