mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-16 15:56:57 +00:00
72ea51f87b
The patch was rebased to apply on the updated version. Signed-off-by: Gianfranco Costamagna <gianfranco.costamagna@abinsula.com> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
35 lines
940 B
BlitzBasic
35 lines
940 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.29
|
|
SRCREV = "d79506694d7ba1c3da865d095238289d6175057d"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = "\
|
|
git://git.drogon.net/wiringPi \
|
|
file://0001-Add-initial-cross-compile-support.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
|
|
}
|