Advertisement
Guest User

Untitled

a guest
Oct 17th, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.42 KB | None | 0 0
  1. # Name: recipes-support/inih/libinih_git.bbappend
  2. # Use this extension to enable dynamic libraries for this package
  3.  
  4. ALLOW_EMPTY_${PN} = "0"
  5.  
  6. EXTRA_OECMAKE = "-DBUILD_SHARED_LIBS=y"
  7.  
  8. INSANE_SKIP_${PN} = "ldflags"
  9. INHIBIT_PACKAGE_STRIP = "1"
  10. INHIBIT_SYSROOT_STRIP = "1"
  11. SOLIBS = ".so"
  12. FILES_SOLIBSDEV = ""
  13.  
  14. do_install () {
  15.     install -d ${D}${libdir}
  16.     install -m 0755 ${WORKDIR}/build/lib/lib*.so ${D}${libdir}
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement