1
0
Fork 0

dev-libs/zix: new package, add 9999

This commit is contained in:
Ryan Fox 2023-03-25 23:56:14 -07:00
parent ae52c437a1
commit d0fb8d3b4c
Signed by: flewkey
GPG Key ID: 94F56ADFD848851E
2 changed files with 35 additions and 0 deletions

11
dev-libs/zix/metadata.xml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>flewkey@2a03.party</email>
<name>Ryan Fox</name>
</maintainer>
<upstream>
<remote-id type="gitlab">drobilla/zix</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,24 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 meson
EGIT_REPO_URI="https://gitlab.com/drobilla/zix.git"
DESCRIPTION="A C data structures library"
HOMEPAGE="https://gitlab.com/drobilla/zix"
LICENSE="ISC"
SLOT="0"
IUSE="doc"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="doc? ( dev-python/sphinx )"
src_configure() {
local emesonargs=(
$(meson_feature doc docs)
)
meson_src_configure
}