luasocket_git.bb 737 B

1234567891011121314151617181920212223242526272829303132333435
  1. LICENSE = "MIT"
  2. LIC_FILES_CHKSUM = "file://LICENSE;md5=ab6706baf6d39a6b0fa2613a3b0831e7"
  3. DEPENDS = "lua"
  4. RDEPENDS:${PN} += "lua"
  5. SRC_URI = "git://github.com/diegonehab/luasocket;protocol=https;branch=master \
  6. file://0001-fix-for-OE.patch \
  7. "
  8. # Modify these as desired
  9. PV = "0.0+git${SRCPV}"
  10. SRCREV = "652959890943c34d7180cae372339b91e62f0d7b"
  11. FILES:${PN} = "${libdir} ${datadir}/lua"
  12. EXTRA_OEMAKE = 'DESTDIR=${D} BASELIB=${base_libdir} PREFIX=/usr CC="${CC}" LD="${CC}" MYLDFLAGS="${LDFLAGS}"'
  13. inherit pkgconfig
  14. do_configure () {
  15. }
  16. do_compile () {
  17. # You will almost certainly need to add additional arguments here
  18. oe_runmake
  19. }
  20. do_install () {
  21. # This is a guess; additional arguments may be required
  22. oe_runmake install
  23. }