diff options
author | Aaron Ball <nullspoon@iohq.net> | 2016-02-21 16:01:15 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2016-02-21 16:01:15 -0700 |
commit | d2c25714689feb1bc2503c9d94d4d7ac0d59c332 (patch) | |
tree | d6ae0b1fb34ef8f25c3f7fcf93397df8a2c3e60b /libvirt/Pkgfile | |
parent | 7bb4cd2fe31e854cb6ff6ea6e71e225e762d9910 (diff) | |
download | ports-d2c25714689feb1bc2503c9d94d4d7ac0d59c332.tar.gz ports-d2c25714689feb1bc2503c9d94d4d7ac0d59c332.tar.xz |
libvirt:Initial commit
Diffstat (limited to 'libvirt/Pkgfile')
-rw-r--r-- | libvirt/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libvirt/Pkgfile b/libvirt/Pkgfile new file mode 100644 index 0000000..5a0d4e3 --- /dev/null +++ b/libvirt/Pkgfile @@ -0,0 +1,26 @@ +# Description: The virtualization API +# URL: http://libvirt.org/ +# Maintainer: Aaron Ball, nullspoon at oper dot io +# Depends on: xorg-libpciaccess libnl gnutls libgcrypt dnsmasq dmidecode iptables ebtables yajl pm-utils bridge-utils + +name=libvirt +version=1.3.1 +release=1 +source=(https://libvirt.org/sources/${name}-${version}.tar.gz) + +build() { + cd ${name}-${version} + + ./configure \ + --prefix=/usr \ + --disable-nls \ + --without-xen \ + --without-uml \ + --without-openvz \ + --without-lxc \ + --with-qemu + + make + make DESTDIR=${PKG} install +} + |