Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.76 KB | None | 0 0
  1. SUMMARY = "Squish Qt Embedded"
  2. LICENSE = "CLOSED"
  3.  
  4. SRC_URI = "git://10.113.100.8/Ax-2.0/squish-qt-embedded;protocol=http;branch=master;user=yocto.rcuser:HgCz9XdQdU4t"
  5.  
  6. SRCREV = "${AUTOREV}"
  7.  
  8. S = "${WORKDIR}/git"
  9.  
  10. RDEPENDS_${PN} += "\
  11.    libxtst \
  12.    libx11 \
  13.    qtbase \
  14.    qtdeclarative \
  15. "
  16.  
  17. inherit qmake5_base
  18.  
  19. QT5TOOLSDEPENDS ?= "qtbase-native"
  20. DEPENDS_prepend = "${QT5TOOLSDEPENDS} "
  21.  
  22. do_configure() {
  23.     ${S}/configure --with-qmake=${OE_QMAKE_QMAKE} --enable-qmake-config --with-squishidl=${S}/tools/squishidl --disable-all --enable-qt --enable-server
  24. }
  25.  
  26. do_compile() {
  27.     ${S}/build
  28. }
  29.  
  30. do_install() {
  31.     install -Dd ${D}/opt/squish
  32.     ${S}/build install DESTDIR=${D}/opt/squish
  33. }
  34.  
  35. FILES_${PN} += "\
  36.    /opt/squish/** \
  37. "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement