Skip to content

Instantly share code, notes, and snippets.

@RcColes
Created March 1, 2019 22:16
Show Gist options
  • Save RcColes/8ced9d718046ef043e75a3a8f8944798 to your computer and use it in GitHub Desktop.
Save RcColes/8ced9d718046ef043e75a3a8f8944798 to your computer and use it in GitHub Desktop.
#!/bin/bash
awk -v newsums="$(makepkg -g)" '
BEGIN {
if (!newsums) exit 1
}
/^[[:blank:]]*(md|sha)[[:digit:]]+sums=/,/\)[[:blank:]]*$/ {
if (!i) print newsums; i++
next
}
1
' PKGBUILD > PKGBUILD.new && mv PKGBUILD{.new,}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment