mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
26 lines
564 B
YAML
26 lines
564 B
YAML
|
distributable:
|
||
|
url: https://boostorg.jfrog.io/artifactory/main/release/{{ version }}/source/boost_{{version.major}}_{{version.minor}}_{{version.patch}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: boostorg/boost
|
||
|
strip: /^boost-/
|
||
|
|
||
|
dependencies:
|
||
|
facebook.com/zstd: ^1
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
script: |
|
||
|
./bootstrap.sh --prefix={{ prefix }}
|
||
|
./b2 install --prefix={{ prefix }}
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
script: |
|
||
|
c++ test.cpp -std=c++14 -lboost_iostreams -lzstd
|
||
|
./a.out
|