pakur.sh 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. cd "${SRC}/cfe-${surum}.src/build"
  2. DESTDIR="${PKG}" ninja install
  3. # Move analyzer scripts out of /usr/libexec
  4. mv "${PKG}"/usr/libexec/{ccc,c++}-analyzer "${PKG}/usr/lib/clang/"
  5. rmdir "${PKG}/usr/libexec"
  6. sed -i 's|libexec|lib/clang|' "${PKG}/usr/bin/scan-build"
  7. # Install Python bindings
  8. install -d "${PKG}/usr/lib/python2.7/site-packages"
  9. cp -a ../bindings/python/clang "${PKG}/usr/lib/python2.7/site-packages/"
  10. python2 -m compileall "${PKG}/usr/lib/python2.7"
  11. python2 -O -m compileall "${PKG}/usr/lib/python2.7"
  12. install -d "${PKG}/usr/lib/python3.7/site-packages"
  13. cp -a ../bindings/python/clang "${PKG}/usr/lib/python3.7/site-packages/"
  14. python3 -m compileall "${PKG}/usr/lib/python3.7"
  15. python3 -O -m compileall "${PKG}/usr/lib/python3.7"
  16. python3 -OO -m compileall "${PKG}/usr/lib/python3.7"
  17. # Fix shebang in Python 2 script
  18. sed -i '1s|/usr/bin/env python$|&2|' \
  19. "${PKG}"/usr/share/${isim}/run-find-all-symbols.py
  20. # Compile Python scripts
  21. python2 -m compileall "${PKG}/usr/share/clang"
  22. python2 -O -m compileall "${PKG}/usr/share/clang"
  23. python3 -m compileall "${PKG}/usr/share" -x 'clang-include-fixer|run-find-all-symbols'
  24. python3 -O -m compileall "${PKG}/usr/share" -x 'clang-include-fixer|run-find-all-symbols'
  25. python3 -OO -m compileall "${PKG}/usr/share" -x 'clang-include-fixer|run-find-all-symbols'