# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="a set of libraries for loading bionic-linked .so files on musl/glibc"
HOMEPAGE="https://gitlab.com/android_translation_layer/bionic_translation"
# SRC_URI=""
EGIT_REPO_URI="https://gitlab.com/android_translation_layer/bionic_translation.git"
EGIT_BRANCH="master"
inherit autotools git-r3

LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND="sys-libs/libunwind
|| ( gui-libs/egl-x11 gui-libs/egl-wayland )
virtual/libelf
dev-libs/libbsd"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
	meson setup --prefix /usr builddir || die "setup failed"
}
src_install() {
	cd builddir
	meson compile
	meson install --destdir "${D}" || die "install failed"
}