2022-12-20 17:31:41 +03:00
|
|
|
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 }}
|
2023-04-28 03:44:39 +03:00
|
|
|
./b2 $ARGS
|
|
|
|
env:
|
|
|
|
ARGS:
|
|
|
|
- install
|
|
|
|
- --prefix={{ prefix }}
|
2023-08-21 01:11:02 +03:00
|
|
|
darwin:
|
|
|
|
ARGS:
|
|
|
|
- linkflags=-Wl,-headerpad_max_install_names
|
2023-08-17 04:00:33 +03:00
|
|
|
linux:
|
2023-04-28 03:44:39 +03:00
|
|
|
ARGS:
|
|
|
|
- cxxflags=-fPIC
|
|
|
|
- linkflags=-fPIC
|
2022-12-20 17:31:41 +03:00
|
|
|
|
|
|
|
test:
|
|
|
|
dependencies:
|
|
|
|
tea.xyz/gx/cc: c99
|
|
|
|
script: |
|
|
|
|
c++ test.cpp -std=c++14 -lboost_iostreams -lzstd
|
|
|
|
./a.out
|