mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
539 B

  1. prosper_cm() {
  2. for f in $archdir/*; do
  3. echo "extracting $f ($taropt)"
  4. tar $taropt $f
  5. done
  6. find *prosper* -type d -exec chown -c root.root '{}' \; \
  7. -exec chmod -c 755 '{}' \;
  8. find *prosper* -type f -exec chown -c root.root '{}' \; \
  9. -exec chmod -c 644 '{}' \;
  10. rm -rfv /usr/share/texmf/tex/latex/contrib-prosper*
  11. rm -rfv /usr/share/texmf/tex/latex/prosper*
  12. cp -av contrib-prosper* /usr/share/texmf/tex/latex
  13. cp -av prosper* /usr/share/texmf/tex/latex
  14. }
  15. custmain="prosper_cm"
  16. autoextract=0