gjdwebserver-overlay/media-libs/libcamera/libcamera-0.0.3.ebuild

47 lines
849 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{7..10} )
inherit meson python-any-r1
DESCRIPTION="Camera support library for Linux"
HOMEPAGE="http://libcamera.org"
SRC_URI="https://github.com/libcamera-org/libcamera/archive/refs/tags/v${PV}.tar.gz"
S="${WORKDIR}/v${PV}"
LICENSE="LGPL-2.1+"
LICENSE="BSD"
KEYWORDS="~arm64"
IUSE="debug doc test udev"
RDEPEND="
>=net-libs/gnutls-3.3:=
udev? ( virtual/libudev )
"
DEPEND="
${RDEPEND}
dev-libs/openssl
$(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
"
src_configure() {
local emesonargs=(
$(meson_feature doc documentation)
$(meson_use test)
--buildtype $(usex debug debug plain)
)
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}