lua-swupdate_git.bb 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Recipe created by recipetool
  2. # This is the basis of a recipe and may need further editing in order to be fully functional.
  3. # (Feel free to remove these comments when editing.)
  4. # WARNING: the following LICENSE and LIC_FILES_CHKSUM values are best guesses - it is
  5. # your responsibility to verify that the values are complete and correct.
  6. LICENSE = "MIT"
  7. LIC_FILES_CHKSUM = "file://LICENSE;md5=d9b7e441d51a96b17511ee3be5a75857"
  8. DEPENDS = "lua swupdate"
  9. SRC_URI = "git://github.com/sbabic/lua-swupdate.git;protocol=https"
  10. # Modify these as desired
  11. PV = "1.0+git${SRCPV}"
  12. SRCREV = "${AUTOREV}"
  13. S = "${WORKDIR}/git"
  14. EXTRA_OEMAKE = 'DESTDIR=${D} PREFIX=/usr'
  15. FILES_${PN} = "${libdir}"
  16. inherit pkgconfig
  17. # NOTE: the following library dependencies are unknown, ignoring: swupdate
  18. # (this is based on recipes that have previously been built and packaged)
  19. # NOTE: this is a Makefile-only piece of software, so we cannot generate much of the
  20. # recipe automatically - you will need to examine the Makefile yourself and ensure
  21. # that the appropriate arguments are passed in.
  22. do_configure () {
  23. # Specify any needed configure commands here
  24. :
  25. }
  26. do_compile () {
  27. # You will almost certainly need to add additional arguments here
  28. oe_runmake
  29. }
  30. do_install () {
  31. # This is a guess; additional arguments may be required
  32. oe_runmake install
  33. }