mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
23 lines
610 B
YAML
23 lines
610 B
YAML
|
distributable:
|
||
|
url: http://deb.debian.org/debian/pool/main/b/bash-completion/bash-completion_{{version.raw}}.orig.tar.gz
|
||
|
strip-components: 1
|
||
|
versions:
|
||
|
url: https://packages.debian.org/source/bullseye/bash-completion
|
||
|
match: /bash-completion_\d+\.\d+\.orig\.tar\.gz/
|
||
|
strip:
|
||
|
- /^bash-completion_/
|
||
|
- /\.orig\.tar\.gz/
|
||
|
build:
|
||
|
dependencies:
|
||
|
gnu.org/autoconf: '*'
|
||
|
gnu.org/automake: '*'
|
||
|
gnu.org/libtool: '*'
|
||
|
script:
|
||
|
- autoreconf -i
|
||
|
- ./configure --prefix="{{prefix}}"
|
||
|
- make
|
||
|
- make install
|
||
|
test:
|
||
|
script:
|
||
|
- bash -c ". {{prefix}}/etc/profile.d/bash_completion.sh"
|