build.sh 253 B

12345678910111213
  1. #!/bin/bash
  2. rm -rf picohttpparser
  3. git clone https://github.com/h2o/picohttpparser.git
  4. cp patches/Makefile picohttpparser
  5. cd picohttpparser
  6. make package
  7. rm -rf http-parser
  8. git clone https://github.com/nodejs/http-parser.git
  9. cd http-parser
  10. make package