Advertisement
Guest User

Untitled

a guest
May 27th, 2015
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | None | 0 0
  1. DESCRIPTION = "Abstract syntax trees module for python"
  2. HOMEPAGE = "https://docs.python.org/2/library/ast.html"
  3. SECTION = "devel/python"
  4. LICENSE = "Apache-2.0"
  5. LIC_FILES_CHKSUM = "file://${WORKDIR}/LICENSE;md5=dd98d01d471fac8d8dbdd975229dba03"
  6. RDEPENDS_${PN} += " python python-core"
  7. PR = "r0"
  8.  
  9. SRC_URI = "file://LICENSE file://ast.py"
  10. SRC_URI[sha256sum] = "c004f51863b556448724526102b6f02cbb73b340514a67f1c3bc817982e46dd9"
  11. SRC_URI[md5sum] = "c9e261ab6a7276e6088b5cc893d81978"
  12. MIRRORS=""
  13.  
  14. S = "${WORKDIR}/lcu_py_scripts"
  15. PYLIBS = "${D}${libdir}/python2.7"
  16. #PYDIST = "${PYLIBS}/dist-packages"
  17.  
  18. do_install_append() {
  19.     #install -d ${D}${bindir}
  20.     #install -m 0755 hellopython.py ${D}${bindir}
  21.     #install -m 0755 LICENSE ${D}${bindir}
  22.     install -d ${PYLIBS}
  23.     install -m 0755 ${WORKDIR}/ast.py ${PYLIBS}
  24. }
  25.  
  26. #FILES_${PN}="${PYLIBS}/ast.py"
  27. FILES_${PN}="*"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement