cli-barcode PHP
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

22 linhas
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}