Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2016
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. DESCRIPTION = "C++ bindings for dbus"
  2. HOMEPAGE = "http://dbus-cxx.sourceforge.net/"
  3. SECTION = "libs"
  4. LICENSE = "GPLv3"
  5. LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
  6. DEPENDS = "boost dbus libsigc++-2.0"
  7.  
  8. # download uri, was fixed since soureforge seems dow
  9. SRC_URI = "\
  10. http://heanet.dl.sourceforge.net/project/dbus-cxx/dbus-cxx/${PV}/dbus-cxx-${PV}.tar.bz2 \
  11. "
  12.  
  13. SRC_URI[md5sum] = "ab89f48dd0cd3c581a9228fcbb3af96b"
  14. SRC_URI[sha256sum] = "a7c179cb7ecafc6477c789b080bd936ac3620220604ffb2ae214a33719839d13"
  15.  
  16. # set working directory
  17. S = "${WORKDIR}/dbus-cxx-${PV}"
  18.  
  19. # call autotools to compile the library
  20. inherit autotools
  21.  
  22. # dependencys
  23. BBCLASSEXTEND = "native"
  24. DEPENDS_virtclass-native = "dbus-native libsigc++-2.0-native"
  25.  
  26. # overwrite configure routine
  27. do_configure() {
  28. cd "../dbus-cxx-0.8.0/"
  29. autoreconf --verbose --install --force
  30. oe_runconf
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement