summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-10-10 07:51:33 -0700
committerAndrei Gherzan <andrei@gherzan.ro>2019-10-10 22:26:53 +0100
commite050601d868df6f7b38812ca930e30a6a4cff135 (patch)
tree0d7b55c06a1336782a4ed4925c7ed635ac0f9d5e /recipes-devtools
parentafc43769e4c85aecd8a8ade062ad430fbb7dc6cb (diff)
downloadmeta-raspberrypi-e050601d868df6f7b38812ca930e30a6a4cff135.tar.gz
wiringpi: Delete
It has gone closed source and git tree has disappeared http://wiringpi.com/wiringpi-deprecated/ Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r--recipes-devtools/wiringpi/wiringpi_git.bb35
1 files changed, 0 insertions, 35 deletions
diff --git a/recipes-devtools/wiringpi/wiringpi_git.bb b/recipes-devtools/wiringpi/wiringpi_git.bb
deleted file mode 100644
index e78c58a..0000000
--- a/recipes-devtools/wiringpi/wiringpi_git.bb
+++ /dev/null
@@ -1,35 +0,0 @@
1DESCRIPTION = "A library to control Raspberry Pi GPIO channels"
2HOMEPAGE = "https://projects.drogon.net/raspberry-pi/wiringpi/"
3SECTION = "devel/libs"
4LICENSE = "LGPLv3+"
5LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02"
6
7DEPENDS += "virtual/crypt"
8
9# tag 2.46
10SRCREV = "8d188fa0e00bb8c6ff6eddd07bf92857e9bd533a"
11
12S = "${WORKDIR}/git"
13
14SRC_URI = "git://git.drogon.net/wiringPi \
15 file://0001-Add-initial-cross-compile-support.patch \
16 "
17
18COMPATIBLE_MACHINE = "^rpi$"
19
20CFLAGS_prepend = "-I${S}/wiringPi -I${S}/devLib "
21
22EXTRA_OEMAKE += "'INCLUDE_DIR=${D}${includedir}' 'LIB_DIR=${D}${libdir}'"
23EXTRA_OEMAKE += "'DESTDIR=${D}/usr' 'PREFIX=""'"
24
25do_compile() {
26 oe_runmake -C devLib
27 oe_runmake -C wiringPi
28 oe_runmake -C gpio 'LDFLAGS=${LDFLAGS} -L${S}/wiringPi -L${S}/devLib'
29}
30
31do_install() {
32 oe_runmake -C devLib install
33 oe_runmake -C wiringPi install
34 oe_runmake -C gpio install
35}