mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
35 lines
724 B
YAML
35 lines
724 B
YAML
distributable:
|
||
url: https://ftp.gnu.org/gnu/bash/bash-{{ version.raw }}.tar.gz
|
||
strip-components: 1
|
||
|
||
versions:
|
||
url: https://ftp.gnu.org/gnu/bash/
|
||
match: /bash-\d+\.\d+(\.\d+)?.tar.gz/
|
||
strip:
|
||
- /^bash-/
|
||
- /\.tar\.gz$/
|
||
|
||
provides:
|
||
- bin/bash
|
||
- bin/bashbug
|
||
|
||
interprets:
|
||
extensions: bash
|
||
args: [bash, -e]
|
||
|
||
build:
|
||
dependencies:
|
||
tea.xyz/gx/make: '*'
|
||
tea.xyz/gx/cc: c99
|
||
script: |
|
||
./configure --prefix={{ prefix }}
|
||
make --jobs {{ hw.concurrency }} install
|
||
env:
|
||
# causes bash to source ~/.bashrc when instantiated
|
||
# non-interactively from sshd. macOS’s bash does this so users expect it.
|
||
CFLAGS: $CFLAGS -DSSH_SOURCE_BASHRC
|
||
|
||
test:
|
||
script: |
|
||
bash -c "set -o pipefail"
|