diff options
author | xiota | 2024-10-01 09:58:13 +0000 |
---|---|---|
committer | xiota | 2024-10-01 10:03:21 +0000 |
commit | 3ddc276952b630929771aaf5a0ea3059691fbd2a (patch) | |
tree | bbd06fff12cfbfae3af62db14403df5f71e7267b /PKGBUILD | |
parent | 046aa9b594bb4b6f4044134f2bfe9f62d0fed793 (diff) | |
download | aur-glibc-eac-roco.tar.gz |
fixups
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 22 |
1 files changed, 20 insertions, 2 deletions
@@ -2,6 +2,9 @@ # This package syncs with core/glibc on rebuild. +pkgver=2.40+r16+gaa533d58ff +pkgrel=2 + ## options : ${_build_roco=true} @@ -31,11 +34,26 @@ if [ ! -e "$_file" ]; then done fi +# fixups +sed -E -e 's&^(pkgver=.*)$&_\1&' \ + -e 's&^(pkgrel=.*)$&_\1&' \ + -e 's&abbrev=[0-9]+&abbrev=10&' \ + -i "arch-glibc/PKGBUILD" + # package source "arch-glibc/PKGBUILD" if [ "${_build_roco::1}" == "t" ]; then - source "PKGBUILD.roco.append" + source "$startdir/PKGBUILD.roco.append" else - source "PKGBUILD.eac.append" + source "$startdir/PKGBUILD.eac.append" fi + +source+=( + 'PKGBUILD.eac.append' + 'PKGBUILD.roco.append' +) +b2sums+=( + 'SKIP' + 'SKIP' +) |