mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
25 lines
484 B
YAML
25 lines
484 B
YAML
|
distributable:
|
||
|
url: https://ftp.gnu.org/gnu/which/which-{{version.raw}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
url: https://ftp.gnu.org/gnu/which
|
||
|
match: /which-\d+(\.\d+)*\.tar\.gz/
|
||
|
strip:
|
||
|
- /^which-/
|
||
|
- /\.tar\.gz$/
|
||
|
|
||
|
build:
|
||
|
script:
|
||
|
- ./configure $ARGS
|
||
|
- make --jobs {{ hw.concurrency }} install
|
||
|
env:
|
||
|
ARGS:
|
||
|
- --prefix="{{prefix}}"
|
||
|
- --disable-dependency-tracking
|
||
|
|
||
|
provides:
|
||
|
- bin/which
|
||
|
|
||
|
test: which -a which | grep "{{prefix}}/bin/which"
|