mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
9303ce8c55
* new file: projects/nongnu.org/lzip/package.yml * looks like concurrency issues on install --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
29 lines
544 B
YAML
29 lines
544 B
YAML
distributable:
|
|
url: https://cdn.betsu.org/mirrors/savannah/lzip/lzip-{{version.marketing}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
url: https://cdn.betsu.org/mirrors/savannah/lzip/
|
|
match: /lzip-\d+\.\d+\.tar\.gz/
|
|
strip:
|
|
- /^lzip-/
|
|
- /.tar.gz$/
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }}
|
|
make install
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
|
|
provides:
|
|
- bin/lzip
|
|
|
|
test:
|
|
lzip --version | grep {{version.marketing}}
|