blob: 4abeeb7a43de301a7d06cf231265594c81a43964 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=6
CROS_WORKON_PROJECT="chromiumos/third_party/ipu3-ipa"
CROS_WORKON_INCREMENTAL_BUILD=0
inherit cros-workon meson
DESCRIPTION="Intel IPU3 IPA for CrOS"
HOMEPAGE="https://www.libcamera.org"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~*"
IUSE=""
RDEPEND="
media-libs/intel-3a-libs-bin
"
DEPEND="
${RDEPEND}
media-libs/libcamera
"
src_configure() {
BUILD_DIR="$(cros-workon_get_build_dir)"
local emesonargs=(
)
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}
|