mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
27 lines
613 B
YAML
27 lines
613 B
YAML
|
distributable:
|
||
|
url: https://github.com/unicode-org/icu/releases/download/release-{{version.major}}-{{version.minor}}/icu4c-{{version.major}}_{{version.minor}}-src.tgz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
- 71.1.0
|
||
|
#TODO ^^ unicode-org/icu but it's madness
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
working-directory: source
|
||
|
script: |
|
||
|
./configure $ARGS
|
||
|
make --jobs {{ hw.concurrency }}
|
||
|
make install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix={{prefix}}
|
||
|
- --disable-samples
|
||
|
- --disable-tests
|
||
|
- --enable-static
|
||
|
- --with-library-bits=64
|
||
|
|
||
|
test: true #FIXME
|