Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. PR = "r0"
  2. PV = "1.0"
  3.  
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=d41d8cd98f00b204e9800998ecf8427e"
  5.  
  6. SRC_URI = "
  7. file://sources
  8. file://COPYING
  9. "
  10. S = "${WORKDIR}"
  11.  
  12. do_install() {
  13. install -d ${D}${localstatedir}/www
  14. cp -r ${S}/sources/* ${D}${localstatedir}/www/
  15. chown -R www-data:www-data ${D}${localstatedir}/www/
  16. chmod -R 775 ${D}${localstatedir}/www/cgi-bin
  17. }
  18.  
  19. do_install() {
  20. install -d ${D}/${localstatedir}/www
  21. cp -r ${S}/sources/* ${D}/${localstatedir}/www/
  22. chown -R www-data:www-data ${D}/${localstatedir}/www/
  23. chmod -R 775 ${D}/${localstatedir}/www/cgi-bin
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement