diff options
Diffstat (limited to 'package/gentoo')
-rw-r--r-- | package/gentoo/media-libs/ipu3-ipa/ipu3-ipa-9999.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/package/gentoo/media-libs/ipu3-ipa/ipu3-ipa-9999.ebuild b/package/gentoo/media-libs/ipu3-ipa/ipu3-ipa-9999.ebuild new file mode 100644 index 0000000..4abeeb7 --- /dev/null +++ b/package/gentoo/media-libs/ipu3-ipa/ipu3-ipa-9999.ebuild @@ -0,0 +1,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 +} |