community/sysbench: without gcc arch and with system lua

This commit is contained in:
Dennis Krupenik 2024-05-17 20:05:20 +02:00 committed by Patrycja Rosa
parent 8f818f1f40
commit a4e4a91dfa

View File

@ -2,13 +2,13 @@
# Maintainer: Dennis Krupenik <dennis@krupenik.com>
pkgname=sysbench
pkgver=1.0.20
pkgrel=1
pkgrel=2
pkgdesc="Scriptable database and system performance benchmark"
url="https://github.com/akopytov/sysbench"
arch="x86 x86_64 aarch64" # Fails to compile on other arches
license="GPL-2.0"
depends_dev="libaio-dev mariadb-dev"
makedepends="$depends_dev autoconf automake bash libtool python3"
makedepends="$depends_dev autoconf automake bash libtool luajit-dev python3"
subpackages="$pkgname-dev $pkgname-doc"
source="https://github.com/akopytov/sysbench/archive/$pkgver/sysbench-$pkgver.tar.gz
python3-test.patch"
@ -25,7 +25,9 @@ build() {
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
--localstatedir=/var \
--without-gcc-arch \
--with-system-luajit
make
}