summaryrefslogtreecommitdiff
path: root/open-vm-tools/Pkgfile
blob: 104fd508a5d32c62c6d8f31f135dd7bcc9540501 (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.0.0-19345655
    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 }

Generated by cgit