blob: 6ee282e199a6a2a1ead5f9c5cee5d19a4c8b8a48 (
plain)
1
2
3
4
5
|
#!/bin/sh
makepkg --printsrcinfo > .SRCINFO
# signatures are updated often, so we drop them from .SCRINFO and the AUR
# page, but keep them in the actual PKGBUILD script to avoid logging in
sed -E -i '/\bsource\s*=/ s/&signature=[a-zA-Z0-9]+\b//g' .SRCINFO
|