cli-barcode PHP
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
478 B

  1. ##################################################
  2. # Gustavo Arnosti Neves - 2016 Jul 11
  3. # Simple makefile for system install / uninstall
  4. # PHP cli-barcode-generator
  5. # Change INSTDIR if you want to install somewhere else
  6. INSTDIR=/usr/local/bin
  7. BC_BASH=barcode
  8. all:
  9. install:
  10. cp ${BC_BASH} ${INSTDIR}/${BC_BASH}
  11. chmod 755 ${INSTDIR}/${BC_BASH}
  12. permissions:
  13. find . -type d -exec chmod 0755 {} \;
  14. find . -type f -exec chmod 0644 {} \;
  15. uninstall:
  16. rm ${INSTDIR}/${BC_BASH}