5 lines
222 B
Bash
Executable file
5 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
# Travis pre-config script.
|
|
# build libevhtp
|
|
git clone https://github.com/criticalstack/libevhtp.git
|
|
(cd libevhtp/build && cmake -DEVHTP_DISABLE_REGEX=ON -DEVHTP_DISABLE_EVTHR=ON .. && make && sudo make install)
|