blob: 4ac78fb8fd106431aeec03b5c62155ef7ed17410 [file] [log] [blame]
Patrick Williamsddad1a12017-02-23 20:36:32 -06001SUMMARY = "System performance benchmark"
2HOMEPAGE = "http://github.com/akopytov/sysbench"
3SECTION = "console/tests"
Andrew Geissler9aee5002022-03-30 16:27:02 +00004LICENSE = "GPL-2.0-only"
Patrick Williamsddad1a12017-02-23 20:36:32 -06005LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
6
7inherit autotools
8
9# The project has moved from Sourceforge to Launchpad, to Github. Use the source tarball from
10# Launchpad until the next release is available from Github.
Andrew Geissler69721092021-07-23 12:57:00 -040011SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz \
12 file://0001-Adding-volatile-modifier-to-tmp-variable-in-memory-t.patch \
13 "
Patrick Williamsddad1a12017-02-23 20:36:32 -060014
15SRC_URI[md5sum] = "3a6d54fdd3fe002328e4458206392b9d"
16SRC_URI[sha256sum] = "83fa7464193e012c91254e595a89894d8e35b4a38324b52a5974777e3823ea9e"
17
Patrick Williams92b42cb2022-09-03 06:53:57 -050018EXTRA_OECONF += "--enable-largefile"
19PACKAGECONFIG ??= ""
Patrick Williamsddad1a12017-02-23 20:36:32 -060020PACKAGECONFIG[aio] = "--enable-aio,--disable-aio,libaio,"
21PACKAGECONFIG[mysql] = "--with-mysql \
22 --with-mysql-includes=${STAGING_INCDIR}/mysql \
23 --with-mysql-libs=${STAGING_LIBDIR}, \
24 --without-mysql,mysql5"
25
Patrick Williams213cb262021-08-07 19:21:33 -050026do_configure:prepend() {
Patrick Williamsddad1a12017-02-23 20:36:32 -060027 touch ${S}/NEWS ${S}/AUTHORS
28}