blob: a9360e25d0a6b8ef49fb06998a9dad2927a66758 [file] [log] [blame]
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CROS_WORKON_COMMIT="388009cab8aca7ef2eb6652c67fc175fa0cc3326"
CROS_WORKON_TREE=("2ef18d1c42c7aee2c4bb4110359103045c055adf" "b66754db7471a5aaf82a673f5c7cb96787a5ed6a" "e7dba8c91c1f3257c34d4a7ffff0ea2537aeb6bb")
CROS_WORKON_INCREMENTAL_BUILD="1"
CROS_WORKON_LOCALNAME="platform2"
CROS_WORKON_PROJECT="chromiumos/platform2"
CROS_WORKON_OUTOFTREE_BUILD=1
CROS_WORKON_SUBTREE="common-mk libmems .gn"
PLATFORM_SUBDIR="libmems"
inherit cros-workon platform
DESCRIPTION="MEMS support library for Chromium OS."
HOMEPAGE="https://chromium.googlesource.com/chromiumos/platform2/+/master/libmems"
LICENSE="BSD-Google"
KEYWORDS="*"
IUSE=""
COMMON_DEPEND="
net-libs/libiio:="
RDEPEND="${COMMON_DEPEND}"
DEPEND="${COMMON_DEPEND}
chromeos-base/system_api:="
src_install() {
dolib.so "${OUT}/lib/libmems.so"
dolib.so "${OUT}/lib/libmems_test_support.so"
insinto "/usr/$(get_libdir)/pkgconfig"
doins libmems.pc
doins libmems_test_support.pc
insinto "/usr/include/chromeos/libmems"
doins *.h
}
platform_pkg_test() {
local tests=(
libmems_testrunner
)
local test_bin
for test_bin in "${tests[@]}"; do
platform_test "run" "${OUT}/${test_bin}"
done
}