Files
external_libcamera/package/gentoo/media-libs/libcamera/libcamera-9999.ebuild
Laurent Pinchart 9d5d0b1458 licenses: Add SPDX headers to Gentoo ebuild
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-04-15 19:51:56 +03:00

40 lines
653 B
Bash

# SPDX-License-Identifier: GPL-2.0-only
# Copyright 2019 Google Inc.
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit git-r3 meson python-any-r1
DESCRIPTION="Camera support library for Linux"
HOMEPAGE="http://libcamera.org"
EGIT_REPO_URI="git://linuxtv.org/libcamera.git"
EGIT_BRANCH="master"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="*"
IUSE="udev"
RDEPEND="udev? ( virtual/libudev )"
DEPEND="
${RDEPEND}
$(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
"
src_configure() {
local emesonargs=(
-Ddocumentation=false
-Dtests=false
)
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}