Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. DESCRIPTION = "WebRTC is an open source project that enables web browsers with Real-Time Communications (RTC) capabilities via simple Javascript APIs."
  2. HOMEPAGE = "http://www.webrtc.org/demo"
  3. LICENSE = "BSD-3-Clause"
  4.  
  5. RDEPENDS_${PN} = "crosswalk"
  6.  
  7. SRC_URI += "file://webrtc.desktop \
  8. file://webrtc \
  9. file://icon.png \
  10. file://LICENSE"
  11.  
  12. LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=ad296492125bc71530d06234d9bfebe0"
  13.  
  14. do_install() {
  15. install -d ${D}${libdir}/webrtc/
  16. install -m 0644 ${WORKDIR}/icon.png ${D}${libdir}/webrtc/icon.png
  17.  
  18. install -d ${D}${bindir}/
  19. install -m 0755 ${WORKDIR}/webrtc ${D}${bindir}/webrtc
  20.  
  21. install -d ${D}${datadir}/applications/
  22. install -m 0644 ${WORKDIR}/webrtc.desktop ${D}${datadir}/applications/webrtc.desktop
  23. }
  24.  
  25. FILES_${PN} = "${bindir}/webrtc ${datadir}/applications/* ${libdir}/webrtc/*"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement