arch-pkgbuilder/plugins/manual

19 lines
341 B
Plaintext
Raw Normal View History

2023-01-13 22:04:14 +00:00
#!/bin/bash
plugin_isupdatable() {
return 1
}
plugin_isbumpable() {
return 0
}
plugin_getpkgfiles() {
2023-01-13 23:24:36 +00:00
updatePkgSums "${PKGDIR}"/"${PKGNAME}"/files
2023-01-13 22:04:14 +00:00
}
plugin_bump() {
local -r PKGREL=$(readSetting "${PKGDIR}"/"${PKGNAME}"/files/PKGBUILD "pkgrel" 0)
sed -i "s/pkgrel=.*/pkgrel=$((PKGREL+1))/" "${PKGDIR}"/"${PKGNAME}"/files/PKGBUILD
}