mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
27 lines
576 B
YAML
27 lines
576 B
YAML
distributable:
|
|
url: https://github.com/zeromq/libzmq/releases/download/v4.3.4/zeromq-4.3.4.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: zeromq/libzmq/releases/tags
|
|
|
|
build:
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{hw.concurrency}} install
|
|
env:
|
|
ARGS:
|
|
- --disable-Werror # fails to build due to deprecations
|
|
- --disable-debug
|
|
- --prefix={{prefix}}
|
|
- --without-docs
|
|
|
|
test:
|
|
dependencies:
|
|
freedesktop.org/pkg-config: '*'
|
|
script: |
|
|
cc fixture.c -lzmq
|
|
./a.out
|
|
pkg-config libzmq --cflags
|
|
pkg-config libzmq --libs
|