luafilesystem_git.bb 971 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. LICENSE = "MIT"
  2. LIC_FILES_CHKSUM = "file://LICENSE;md5=d9b7e441d51a96b17511ee3be5a75857"
  3. DEPENDS = "lua"
  4. SRC_URI = "git://github.com/keplerproject/luafilesystem;protocol=https;branch=master \
  5. file://0001-Fix-for-OE.patch"
  6. # Modify these as desired
  7. PV = "1.8.0"
  8. SRCREV = "7c6e1b013caec0602ca4796df3b1d7253a2dd258"
  9. inherit pkgconfig
  10. EXTRA_OEMAKE = 'PREFIX=${D}/${prefix} CROSS_COMPILE=${TARGET_PREFIX} CC="${CC} -fpic" LDFLAGS="${LDFLAGS}"'
  11. # NOTE: this is a Makefile-only piece of software, so we cannot generate much of the
  12. # recipe automatically - you will need to examine the Makefile yourself and ensure
  13. # that the appropriate arguments are passed in.
  14. FILES:${PN} = "${libdir} ${datadir}/lua"
  15. do_configure () {
  16. # Specify any needed configure commands here
  17. :
  18. }
  19. do_compile () {
  20. # You will almost certainly need to add additional arguments here
  21. oe_runmake
  22. }
  23. do_install () {
  24. # This is a guess; additional arguments may be required
  25. oe_runmake install
  26. }