27 lines
455 B
Bash
27 lines
455 B
Bash
#!/bin/sh
|
|
|
|
update_github_tag() {
|
|
local repo=$1
|
|
|
|
ver=`curl -Ls https://api.github.com/repos/${repo}/tags | jq -r '.[0].name' | cut -c2-`
|
|
echo $ver
|
|
sed -i "s/pkgver=.*/pkgver=${ver}/" PKGBUILD
|
|
}
|
|
|
|
update_pkg() {
|
|
|
|
updpkgsums
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
makepkg --printsrcinfo > .SRCINFO
|
|
git add .SRCINFO PKGBUILD
|
|
git commit -m "$(basename $(pwd)): update to $ver"
|
|
if [ $? -eq 0 ]
|
|
then
|
|
git push
|
|
fi
|
|
fi
|
|
|
|
}
|