Advertisement
Guest User

Untitled

a guest
Mar 20th, 2014
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. DESCRIPTION = "Web Admin GUI"
  2. LICENSE = "ENDPOINT"
  3. LIC_FILES_CHKSUM = "file://LICENSE;md5=5bfd4f72cf6fca09b3a4055a60dbecf7"
  4. PR = "r0"
  5.  
  6. SRC_URI = "http://some.machine/path/to/webadmin.zip;unpack=no;name=webadmin"
  7.  
  8. SRC_URI[webadmin.md5sum] = "5817a115e7e101ed17f6659984671af7"
  9. SRC_URI[webadmin.sha256sum] = "3130aa21d3177aec1141e32b25149f589c061ce614b9bcaddc6add4bc964c079"
  10.  
  11.  
  12. do_install() {
  13. install -d ${D}${localstatedir}
  14. install -d ${D}${localstatedir}/box-webadmin
  15. }
  16.  
  17. pkg_postinst_PACKAGENAME () {
  18. #!/bin/sh -e
  19. if [ x"$D" = "x" ]; then
  20. # Actions to carry out on the device go here
  21.  
  22. else
  23. exit 1
  24. fi
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement