Advertisement
akilawickey

Untitled

Jun 9th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. #
  2. # This file was derived from the 'Hello World!' example recipe in the
  3. # Yocto Project Development Manual.
  4. #
  5.  
  6. DESCRIPTION = "zebra package install recipe"
  7. SECTION = "examples"
  8. DEPENDS = ""
  9. LICENSE = "MIT"
  10. LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
  11.  
  12. FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
  13.  
  14. SRCREV = "4ec84957442182f36351f94c0626560ec3ffd487"
  15. SRC_URI = "git://github.com/barmalei/zebkit.git;protocol=git"
  16.  
  17. # this SRCREV determines the branch or tag to be used
  18. SRCREV = "master"
  19.  
  20. # this is a revision number that should be updated every time you alter this recipe
  21. PR = "r0"
  22.  
  23. S = "${WORKDIR}/git"
  24.  
  25. do_install () {
  26. npm install -g yuidocjs
  27. npm install -g gulp
  28. npm install
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement