diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2026-03-11 16:57:55 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2026-03-11 16:57:55 +0000 |
| commit | 5e10a123c82c19e4cc39564829d2156d7691f855 (patch) | |
| tree | d29d019edf253609bddb48c9de36dbb1ec49763f /repos/extra/bash/abuild | |
| parent | eeb726d2cf5b73233c813bf16c22e846859f093c (diff) | |
| download | alicelinux-5e10a123c82c19e4cc39564829d2156d7691f855.tar.gz alicelinux-5e10a123c82c19e4cc39564829d2156d7691f855.zip | |
bash: updated to 5.3p9
Diffstat (limited to 'repos/extra/bash/abuild')
| -rw-r--r-- | repos/extra/bash/abuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/repos/extra/bash/abuild b/repos/extra/bash/abuild index 373714de..047a2b58 100644 --- a/repos/extra/bash/abuild +++ b/repos/extra/bash/abuild @@ -1,10 +1,12 @@ name=bash -version=5.3.3 +version=5.3p9 release=1 -source="https://ftpmirror.gnu.org/gnu/$name/${name}-${version%.*}.tar.gz - bash53-001.patch::https://ftpmirror.gnu.org/gnu/${name}/${name}-${version%.*}-patches/bash53-001 - bash53-002.patch::https://ftpmirror.gnu.org/gnu/${name}/${name}-${version%.*}-patches/bash53-002 - bash53-003.patch::https://ftpmirror.gnu.org/gnu/${name}/${name}-${version%.*}-patches/bash53-003 +source="https://ftpmirror.gnu.org/gnu/${name}/${name}-${version%p*}.tar.gz + $(b=${version%p*}; p=${version#*p}; i=1; while [ $i -le $p ]; do + printf "https://ftpmirror.gnu.org/gnu/%s/%s-%s-patches/%s%s-%03d\n" \ + "$name" "$name" "$b" "$name" "${b/./}" "$i" + i=$((i+1)) + done) bashrc" build_opt="--without-bash-malloc --with-installed-readline" patch_opt="-Np0" |