mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
37 lines
754 B
YAML
37 lines
754 B
YAML
|
distributable:
|
||
|
url: https://github.com/warmcat/libwebsockets/archive/v{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: warmcat/libwebsockets/tags
|
||
|
|
||
|
dependencies:
|
||
|
libuv.org: 1
|
||
|
libevent.org: 2
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
cmake.org: 3
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
working-directory: build
|
||
|
script: |
|
||
|
cmake .. -DCMAKE_INSTALL_PREFIX="{{prefix}}" $ARGS
|
||
|
make --jobs {{ hw.concurrency }} install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- -DLWS_IPV6=ON
|
||
|
- -DLWS_WITH_HTTP2=ON
|
||
|
- -DLWS_WITH_LIBEVENT=ON
|
||
|
- -DLWS_WITH_LIBUV=ON
|
||
|
- -DLWS_WITH_PLUGINS=ON
|
||
|
- -DLWS_WITHOUT_TESTAPPS=ON
|
||
|
- -DLWS_UNIX_SOCK=ON
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
script: |
|
||
|
cc fixture.c -lwebsockets
|
||
|
./a.out
|