pantry/projects/gnu.org/bash/package.yml

35 lines
724 B
YAML
Raw Normal View History

2022-08-02 04:08:18 +03:00
distributable:
url: https://ftp.gnu.org/gnu/bash/bash-{{ version.raw }}.tar.gz
strip-components: 1
versions:
2023-05-08 17:05:55 +03:00
url: https://ftp.gnu.org/gnu/bash/
match: /bash-\d+\.\d+(\.\d+)?.tar.gz/
strip:
- /^bash-/
- /\.tar\.gz$/
2022-08-02 04:08:18 +03:00
provides:
- bin/bash
- bin/bashbug
interprets:
extensions: bash
args: [bash, -e]
2022-08-02 04:08:18 +03:00
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. macOSs bash does this so users expect it.
2023-04-16 02:06:40 +03:00
CFLAGS: $CFLAGS -DSSH_SOURCE_BASHRC
2022-08-02 04:08:18 +03:00
test:
script: |
bash -c "set -o pipefail"