mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 10:25:05 +03:00
26 lines
613 B
YAML
26 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
|