mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
e3c1626dfe
* github.com/nemtrif/utfcpp * hmm... try tea.xyz/gx/make for linux test * test +gnu.org/gcc: '*' * LDFLAGS * -DCMAKE_CXX_FLAGS="-std=c++14" * LD_LIBRARY_PATH * -DCMAKE_CXX_FLAGS="-std=c++17" * gc++ maybe * without DCMAKE_CXX_COMPILER * -gnu.org/gcc: '*' * +tea.xyz/gx/cc: c99 * test deps
47 lines
1,010 B
YAML
47 lines
1,010 B
YAML
distributable:
|
|
url: https://github.com/nemtrif/utfcpp/archive/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
display-name: utf8cpp
|
|
|
|
versions:
|
|
github: nemtrif/utfcpp
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/make: '*'
|
|
cmake.org: '*'
|
|
darwin:
|
|
gnu.org/gcc: '*'
|
|
linux:
|
|
tea.xyz/gx/cc: c99
|
|
|
|
working-directory: build
|
|
script:
|
|
- cmake .. $ARGS
|
|
- make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
ARGS:
|
|
- -DUTF8_INSTALL:BOOL=ON
|
|
- -DUTF8_SAMPLES:BOOL=OFF
|
|
- -DUTF8_TESTS:BOOL=OFF
|
|
- -DCMAKE_INSTALL_PREFIX={{prefix}}
|
|
- -DCMAKE_INSTALL_LIBDIR=lib
|
|
- -DCMAKE_BUILD_TYPE=Release
|
|
- -DCMAKE_FIND_FRAMEWORK=LAST
|
|
- -DCMAKE_VERBOSE_MAKEFILE=ON
|
|
- -Wno-dev
|
|
- -DBUILD_TESTING=OFF
|
|
|
|
test:
|
|
dependencies:
|
|
cmake.org: '*'
|
|
tea.xyz/gx/make: '*'
|
|
darwin:
|
|
gnu.org/gcc: '*'
|
|
linux:
|
|
tea.xyz/gx/cc: c99
|
|
script:
|
|
- cmake . -DCMAKE_PREFIX_PATH:STRING="test" -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
|
|
- make
|
|
- ./utf8_append |