mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-17 04:06:56 +00:00
wiringpi: use lower-case in recipe directory name
Keep naming consistency. Signed-off-by: Hugo Hromic <hhromic@gmail.com>
This commit is contained in:
committed by
Andrei Gherzan
parent
efa81bff3e
commit
3b6549a5e0
@@ -0,0 +1,33 @@
|
||||
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.44
|
||||
SRCREV = "96344ff7125182989f98d3be8d111952a8f74e15"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
SRC_URI = "git://git.drogon.net/wiringPi \
|
||||
file://0001-Add-initial-cross-compile-support.patch \
|
||||
"
|
||||
|
||||
COMPATIBLE_MACHINE = "^rpi$"
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user