Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. SUMMARY = "Hello World Application"
  2. DESCRIPTION = "Sample Hello World Application"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
  5.  
  6. SRC_URI = "file://helloworld.c "
  7.  
  8. do_compile() {
  9. ${CC} helloworld.c -o helloworld
  10. }
  11.  
  12. do_install() {
  13. install -d ${bindir}
  14. install -m 0755 helloworld ${bindir}
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement