mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
35 lines
715 B
YAML
35 lines
715 B
YAML
|
distributable:
|
||
|
url: https://github.com/BLAKE2/libb2/releases/download/v{{version}}/libb2-{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: BLAKE2/libb2
|
||
|
strip: /^v/
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
gnu.org/gcc: '*'
|
||
|
script: |
|
||
|
./configure $ARGS
|
||
|
make --jobs {{ hw.concurrency }} install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix="{{prefix}}"
|
||
|
- --disable-dependency-tracking
|
||
|
- --disable-silent-rules
|
||
|
darwin/x86-64:
|
||
|
ARGS:
|
||
|
- --enable-fat
|
||
|
linux/x86-64:
|
||
|
ARGS:
|
||
|
- --enable-fat
|
||
|
linux/aarch64:
|
||
|
ARGS:
|
||
|
- --enable-native="no"
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
freedesktop.org/pkg-config: '*'
|
||
|
script:
|
||
|
pkg-config --modversion libb2 | grep {{version.raw}}
|