mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-05-18 00:53:33 +00:00
Not having this correctly will get you into troubles like: | gpio.c:40:23: fatal error: gertboard.h: No such file or directory | #include <gertboard.h> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
35 lines
1009 B
BlitzBasic
35 lines
1009 B
BlitzBasic
DESCRIPTION = "A library to control Raspberry Pi GPIO channels"
|
|
HOMEPAGE = "https://projects.drogon.net/raspberry-pi/wiringpi/"
|
|
SECTION = "devel/libs"
|
|
LICENSE = "LGPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02"
|
|
|
|
# tag 2.32
|
|
SRCREV = "b0a60c3302973ca1878d149d61f2f612c8f27fac"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = "git://git.drogon.net/wiringPi \
|
|
file://0001-Add-initial-cross-compile-support.patch \
|
|
file://0001-include-asm-ioctl.h-directly-for-_IOC_SIZEBITS.patch \
|
|
"
|
|
|
|
COMPATIBLE_MACHINE = "raspberrypi"
|
|
|
|
CFLAGS_prepend = "-I${S}/wiringPi -I${S}/devLib "
|
|
|
|
EXTRA_OEMAKE += "'INCLUDE_DIR=${D}${includedir}' 'LIB_DIR=${D}${libdir}'"
|
|
EXTRA_OEMAKE += "'DESTDIR=${D}/usr' 'PREFIX=""'"
|
|
|
|
do_compile() {
|
|
oe_runmake -C devLib
|
|
oe_runmake -C wiringPi
|
|
oe_runmake -C gpio 'LDFLAGS=${LDFLAGS} -L${S}/wiringPi -L${S}/devLib'
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake -C devLib install
|
|
oe_runmake -C wiringPi install
|
|
oe_runmake -C gpio install
|
|
}
|