commit: 6b65f0aeb83969edc646cbf3e225f35804263a7a Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Sun Dec 6 18:07:12 2020 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Dec 6 18:33:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b65f0ae
dev-util/sysprof-capture: Add multilib support Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> .../sysprof-capture/sysprof-capture-3.36.0-r1.ebuild | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild b/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild index f5767d87f27..9eade932617 100644 --- a/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild +++ b/dev-util/sysprof-capture/sysprof-capture-3.36.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=7 GNOME_ORG_MODULE="sysprof" -inherit gnome.org meson systemd +inherit gnome.org meson multilib-minimal systemd DESCRIPTION="Static library for sysprof capture data generation" HOMEPAGE="http://sysprof.com/" @@ -23,7 +23,7 @@ BDEPEND=" virtual/pkgconfig " -src_configure() { +multilib_src_configure() { local emesonargs=( -Denable_gtk=false -Dlibsysprof=false @@ -35,3 +35,15 @@ src_configure() { ) meson_src_configure } + +multilib_src_compile() { + meson_src_compile +} + +multilib_src_test() { + meson_src_test +} + +multilib_src_install() { + meson_src_install +}
