diff options
author | Joris Offouga <offougajoris@gmail.com> | 2020-06-07 18:05:32 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-08 22:00:37 -0700 |
commit | bebeebc72c69c45c4d4604347c8069e50f445496 (patch) | |
tree | 7a4f9ab855ee102d7bc9d61970b264e6fc49a72d | |
parent | d85613d8d1d285c9a1f9cf3cf8b13655220cd8cf (diff) | |
download | meta-openembedded-bebeebc72c69c45c4d4604347c8069e50f445496.tar.gz |
c-periphery: add recipe
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/c-periphery/c-periphery_2.2.1.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/c-periphery/c-periphery_2.2.1.bb b/meta-oe/recipes-support/c-periphery/c-periphery_2.2.1.bb new file mode 100644 index 0000000000..b53cd6b19f --- /dev/null +++ b/meta-oe/recipes-support/c-periphery/c-periphery_2.2.1.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | SUMMURY = "C-Periphery lib used to access GPIO, LED, PWM, SPI, I2C, MMIO, Serial" | ||
2 | DESCRIPTION = "A C library for peripheral I/O (GPIO, LED, PWM, SPI, I2C, MMIO, Serial) in Linux" | ||
3 | |||
4 | HOMEPAGE = "https://github.com/vsergeev/c-periphery" | ||
5 | |||
6 | SECTION = "libs" | ||
7 | |||
8 | LICENSE = "MIT" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4097ec544cf01e9c7cfc4bdf8e4ed887" | ||
10 | |||
11 | SRC_URI = "git://github.com/vsergeev/c-periphery;protocol=https" | ||
12 | SRCREV = "c2aa7d164f87b807077daeeb3443a56b89e1d1c9" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit cmake | ||
17 | |||
18 | EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=ON" | ||
19 | |||
20 | BBCLASSEXTEND = "native nativesdk" | ||
21 | |||