blob: 6daaafdd4ff42ba71c21c6d445f891ad893916a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/bash
# Usage:
# PKGVER=x.x.x ./package-update.sh
arch=( 'x86_64' 'i686' 'arm' 'aarch64' )
_arch=( 'amd64' '386' 'arm' 'arm64' )
sed -i "s/pkgver=.*/pkgver=${PKGVER}/" PKGBUILD
for a in "${!arch[@]}"; do
wget -q https://cache.agilebits.com/dist/1P/op2/pkg/v"${PKGVER}"/op_linux_"${_arch[a]}"_v"${PKGVER}".zip
unzip -q op_linux_"${_arch[a]}"_v"${PKGVER}".zip
if gpgv -q op.sig op > /dev/null 2>&1; then
sha256=$(sha256sum op_linux_"${_arch[a]}"_v"${PKGVER}".zip | awk '{print $1}')
sed -i "s/sha256sums_${arch[a]}=.*/sha256sums_${arch[a]}=\('${sha256}'\)/" PKGBUILD
else
echo "Bad Signature for op_linux_${arch[a]}_v${PKGVER}.zip."
fi
rm op*
done
|