virt-what is a shell script which can be used to detect if the program is running in a virtual machine. virt-what supports a very large number of different hypervisor types, including common open source hypervisors (KVM, Xen, QEMU, VirtualBox, VMM), mainframe systems like IBM Systemz, LPAR, z/VM, hardware partitioning schemes like Hitachi Virtage, proprietary hypervisors like VMWare, Microsoft Hyper-V and much more. patches to add support for detecting vmm were merged upstream already ok landry@
22 lines
427 B
Makefile
22 lines
427 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/08/10 12:23:28 jasper Exp $
|
|
|
|
COMMENT = detect if we are running in a virtual machine
|
|
|
|
DISTNAME = virt-what-1.18
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://people.redhat.com/~rjones/virt-what/
|
|
|
|
MAINTAINER = Jasper Lievisse Adriaanse <jasper@openbsd.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/files/
|
|
|
|
WANTLIB += c
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|