blob: 574021ec4177f25e31bf2cc6e7d8a9bf43ada8e1 [file] [log] [blame]
Brad Bishop870eb532020-01-06 09:44:45 -05001DESCRIPTION = "A module to control Raspberry Pi GPIO channels"
2HOMEPAGE = "https://sourceforge.net/projects/raspberry-gpio-python/"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENCE.txt;md5=9b95630a648966b142f1a0dcea001cb7"
6
7PYPI_PACKAGE = "RPi.GPIO"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00008inherit pypi setuptools3
Brad Bishop870eb532020-01-06 09:44:45 -05009
10SRC_URI += "file://0001-Remove-nested-functions.patch"
11SRC_URI[md5sum] = "777617f9dea9a1680f9af43db0cf150e"
12SRC_URI[sha256sum] = "7424bc6c205466764f30f666c18187a0824077daf20b295c42f08aea2cb87d3f"
13
14COMPATIBLE_MACHINE = "^rpi$"
Andrew Geissler19b4e6c2020-09-18 13:33:52 -050015
16# ignore issues with -fno-common from gcc-10 until it's fixed in upstream:
17# https://sourceforge.net/p/raspberry-gpio-python/tickets/187/
18CFLAGS += "-fcommon"