Advertisement
Guest User

Untitled

a guest
Feb 25th, 2010
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1.  
  2.  
  3.  
  4. DESCRIPTION="Q-MATIC Branch Hub Web Application"
  5.  
  6. SRC_URI="
  7.  
  8. file://www/images/export2.png \
  9. file://www/images/qmatic_logo.gif \
  10. file://www/images/qm_topBg.gif \
  11. file://www/images/tabBgOff.png \
  12. file://www/images/tabBgOn.png \
  13. file://www/images/warning.png \
  14. file://www/images/24x24/clients.png \
  15. ........
  16. .......
  17. "
  18.  
  19. RR = "r1"
  20. PN = "device-controller-web"
  21. PV = "1.0.1"
  22. P = "${PN}-${PV}"
  23. PF = "${PN}-${PV}-${PR}"
  24.  
  25.  
  26. FILES_${PN} += "/qmdc/.password \
  27. /qmdc/www/* \
  28. /qmdc/www/images/* \
  29. /qmdc/www/images/24x24/* \
  30. /qmdc/www/images/32x32/* \
  31. /qmdc/interfaces.template"
  32.  
  33.  
  34.  
  35. do_install () {
  36.  
  37. install -m 0755 -d ${D}/qmdc/www
  38. install -m 0755 -d ${D}/qmdc/www/scripts
  39. install -m 0755 -d ${D}/qmdc/www/images
  40. install -m 0755 -d ${D}/qmdc/www/images/24x24
  41. install -m 0755 -d ${D}/qmdc/www/images/32x32
  42.  
  43. install -m 0644 ${WORKDIR}/.password ${D}/qmdc
  44. install -m 0644 ${WORKDIR}/interfaces.template ${D}/qmdc
  45.  
  46. install -m 0644 ${WORKDIR}/www/*.php ${D}/qmdc/www
  47. install -m 0644 ${WORKDIR}/www/*.css ${D}/qmdc/www
  48. install -m 0644 ${WORKDIR}/www/*.js ${D}/qmdc/www
  49.  
  50. install -m 0644 ${WORKDIR}/www/images/*.png ${D}/qmdc/www/images
  51. install -m 0644 ${WORKDIR}/www/images/*.gif ${D}/qmdc/www/images
  52.  
  53. install -m 0655 ${WORKDIR}/www/scripts/* ${D}/qmdc/www/scripts
  54.  
  55. install -m 0644 ${WORKDIR}/www/images/24x24/*.png ${D}/qmdc/www/images/24x24
  56. install -m 0644 ${WORKDIR}/www/images/32x32/*.png ${D}/qmdc/www/images/32x32
  57.  
  58.  
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement