summaryrefslogtreecommitdiffstats
path: root/common/recipes-core/sensor-util/sensor-util_0.1.bb
blob: d802694d4d60053eebf1cae78f82b5b0bb9a0d0e (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
# Copyright 2015-present Facebook. All Rights Reserved.
SUMMARY = "Sensor Utility"
DESCRIPTION = "Util for reading various sensors"
SECTION = "base"
PR = "r1"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://sensor-util.c;beginline=4;endline=16;md5=b395943ba8a0717a83e62ca123a8d238"

SRC_URI = "file://Makefile \
           file://sensor-util.c \
          "
S = "${WORKDIR}"

binfiles = "sensor-util"

DEPENDS =+ " libsdr libpal "

pkgdir = "sensor-util"

do_install() {
  dst="${D}/usr/local/fbpackages/${pkgdir}"
  bin="${D}/usr/local/bin"
  install -d $dst
  install -d $bin
  install -m 755 sensor-util ${dst}/sensor-util
  ln -snf ../fbpackages/${pkgdir}/sensor-util ${bin}/sensor-util
}

FBPACKAGEDIR = "${prefix}/local/fbpackages"

FILES_${PN} = "${FBPACKAGEDIR}/sensor-util ${prefix}/local/bin"

INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
INHIBIT_PACKAGE_STRIP = "1"
OpenPOWER on IntegriCloud