summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgit user2023-08-01 00:35:57 +0200
committergit user2023-08-01 00:35:57 +0200
commitba593c255411032b813095a21575131fb5154841 (patch)
tree447ee442b942dafc41a5a5a97be9acfff06d45e2
parent3aa602fa5bf4e3b15fa132c58f9e153d6febd224 (diff)
downloadaur-ba593c255411032b813095a21575131fb5154841.tar.gz
Made ./configure options more explicit.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD14
2 files changed, 13 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 54b6202cd32c..487aa20069e1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = libvirt-sandbox
pkgdesc = An application sandbox toolkit
pkgver = 0.8.0
- pkgrel = 3
+ pkgrel = 5
url = http://sandbox.libvirt.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index bd2c5c56b312..b5805577d0e9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Radostin Stoyanov <rstoyanov1@gmail.com>
pkgname=libvirt-sandbox
pkgver=0.8.0
-pkgrel=3
+pkgrel=5
pkgdesc="An application sandbox toolkit"
arch=('i686' 'x86_64')
url="http://sandbox.libvirt.org/"
@@ -37,11 +37,21 @@ build() {
# Work around linker error caused by missing static library liblzma.a
# by disabling LZMA support for now.
+ # But we still get error 'configure: error: static LZMA is required in order to build virt-sandbox-init-qemu'.
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/$pkgname \
--sysconfdir=/etc \
- --enable-introspection
+ --enable-shared \
+ --enable-static \
+ --disable-werror \
+ --disable-gtk-doc \
+ --enable-gtk-doc-html \
+ --disable-gtk-doc-pdf \
+ --enable-introspection \
+ --with-zlib \
+ --without-lzma \
+ --with-capng
make
}