Advertisement
Guest User

Untitled

a guest
May 1st, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. DESCRIPTION = "Installs files from file subdirectory"
  2. SECTION = "tests"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
  5. PR = "r0"
  6.  
  7. SRC_URI = "file://*"
  8.  
  9. do_install() {
  10. mkdir -p ${D}${bindir}
  11. # You have to know here the filename, file://* above is a hack, file://MYFILE would be a cleaner way
  12. install -m 0755 ${WORKDIR}/MYFILE ${D}${bindir}
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement