python3-adafruit-circuitpython-motorkit_1.6.1.bb 760 B

12345678910111213141516171819202122
  1. SUMMARY = "CircuitPython helper library for DC & Stepper Motor FeatherWing, Shield, and Pi Hat kits."
  2. HOMEPAGE = "https://github.com/adafruit/Adafruit_CircuitPython_MotorKit"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://LICENSE;md5=6ad4a8854b39ad474755ef1aea813bac"
  5. SRC_URI = "git://github.com/adafruit/Adafruit_CircuitPython_MotorKit.git;branch=main;protocol=https"
  6. SRCREV = "8c1462b4129b21f6db156d1517abb017bb74b982"
  7. S = "${WORKDIR}/git"
  8. inherit setuptools3
  9. DEPENDS += "python3-setuptools-scm-native"
  10. RDEPENDS:${PN} += " \
  11. python3-adafruit-blinka \
  12. python3-adafruit-circuitpython-busdevice \
  13. python3-adafruit-circuitpython-motor \
  14. python3-adafruit-circuitpython-pca9685 \
  15. python3-adafruit-circuitpython-register \
  16. python3-core \
  17. "