blob: 86ba605bf7e49b83e129f08a95b66628a0d1618b (
plain)
1 # Description: A set of services and modules that enable several features in VMware products for better management of, and seamless user interactions with, guests
2 # URL: https://github.com/vmware/open-vm-tools
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: libmspack libdnet glib rpcsvc-proto fuse
5
6 name=open-vm-tools
7 version=12.1.5-20735119
8 release=1
9 source=(https://github.com/vmware/$name/releases/download/stable-${version%-*}/$name-$version.tar.gz \
10 vmtoolsd)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr \
15 --without-icu \
16 --without-x \
17 --without-xerces
18 make
19 make DESTDIR=$PKG install
20
21 install -o root -g root -m 0755 -D $SRC/vmtoolsd \
22 $PKG/etc/rc.d/vmtoolsd
23 }
|