diff options
-rw-r--r-- | meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb b/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb new file mode 100644 index 0000000000..3c6954855f --- /dev/null +++ b/meta-oe/recipes-benchmark/sysbench/sysbench_0.4.12.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "System performance benchmark" | ||
2 | HOMEPAGE = "http://github.com/akopytov/sysbench" | ||
3 | SECTION = "console/tests" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
6 | |||
7 | inherit 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. | ||
11 | SRC_URI = "https://launchpad.net/ubuntu/+archive/primary/+files/${BPN}_${PV}.orig.tar.gz" | ||
12 | |||
13 | SRC_URI[md5sum] = "3a6d54fdd3fe002328e4458206392b9d" | ||
14 | SRC_URI[sha256sum] = "83fa7464193e012c91254e595a89894d8e35b4a38324b52a5974777e3823ea9e" | ||
15 | |||
16 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'largefile', '', d)}" | ||
17 | PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,," | ||
18 | PACKAGECONFIG[aio] = "--enable-aio,--disable-aio,libaio," | ||
19 | PACKAGECONFIG[mysql] = "--with-mysql \ | ||
20 | --with-mysql-includes=${STAGING_INCDIR}/mysql \ | ||
21 | --with-mysql-libs=${STAGING_LIBDIR}, \ | ||
22 | --without-mysql,mysql5" | ||
23 | |||
24 | do_configure_prepend() { | ||
25 | touch ${S}/NEWS ${S}/AUTHORS | ||
26 | } | ||