27 lines
350 B
Bash
27 lines
350 B
Bash
#!/bin/bash
|
|
|
|
plugin_isupdatable() {
|
|
return 1
|
|
}
|
|
|
|
plugin_isbumpable() {
|
|
return 0
|
|
}
|
|
|
|
plugin_getpkgfiles() {
|
|
echo "${PKGDIR}/${PKGNAME}/files"
|
|
}
|
|
|
|
plugin_bump() {
|
|
local -r PKGREL=$(readSetting "${PKGBUILD}" "pkgrel" 0)
|
|
sed -i "s/pkgrel=.*/pkgrel=$((PKGREL+1))/" "${PKGBUILD}"
|
|
}
|
|
|
|
plugin_getlatestversion() {
|
|
return 1
|
|
}
|
|
|
|
plugin_update() {
|
|
return 1
|
|
}
|