diff options
author | 2022-09-19 22:48:55 +0200 | |
---|---|---|
committer | 2022-09-20 11:24:26 -0400 | |
commit | a18be2aa84a4c413430ffe17b66147ad9b4c3cc3 (patch) | |
tree | 9bb098a8cedb328f23a950b6d21781fd2182c0cd /dev-libs/libglib-testing/libglib-testing-0.1.1.ebuild | |
parent | sys-libs/glibc: drop duplicate patch in 2.36-r1 (diff) | |
download | gentoo-a18be2aa84a4c413430ffe17b66147ad9b4c3cc3.tar.gz gentoo-a18be2aa84a4c413430ffe17b66147ad9b4c3cc3.tar.bz2 gentoo-a18be2aa84a4c413430ffe17b66147ad9b4c3cc3.zip |
dev-libs/libglib-testing: add new package 0.1.1
Closes: https://github.com/gentoo/gentoo/pull/27366
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-libs/libglib-testing/libglib-testing-0.1.1.ebuild')
-rw-r--r-- | dev-libs/libglib-testing/libglib-testing-0.1.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-libs/libglib-testing/libglib-testing-0.1.1.ebuild b/dev-libs/libglib-testing/libglib-testing-0.1.1.ebuild new file mode 100644 index 000000000000..1533af057974 --- /dev/null +++ b/dev-libs/libglib-testing/libglib-testing-0.1.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson + +DESCRIPTION="Libglib-testing is a test library providing test harnesses and mock classes" +HOMEPAGE="https://gitlab.gnome.org/pwithnall/libglib-testing" +SRC_URI="https://tecnocode.co.uk/downloads/libglib-testing-${PV}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=">=dev-libs/glib-2.44:2" +RDEPEND="${DEPEND}" +BDEPEND="dev-util/gtk-doc" + +src_configure() { + local emesonargs=( + -Dinstalled_tests=false + ) + meson_src_configure +} |