@noobping CHECKSUMS don't make sense in our case, as the project is

hosted in a git repository, which ensures integrity. The case of use for
checksums is when we donwload data from an external source (example: the nvidia blob in the
nvidia drivers)
This commit is contained in:
Zeioth 2022-04-11 02:41:59 +02:00
parent e2113b4b64
commit a905e10bb3

View file

@ -1,5 +1,5 @@
pkgname=wofi-calc-git
pkgver=1.0
pkgver=1.0.r26.e2113b4
pkgrel=1
epoch=
pkgdesc="A simple calculator for wofi, inspired in rofi-calc."
@ -12,15 +12,15 @@ makedepends=(wofi libqalculate)
checkdepends=()
optdepends=()
provides=(wofi-calc-git)
conflicts=(wofi-calc-git wofi-calc)
conflicts=(wofi-calc)
replaces=()
backup=()
options=()
install=
changelog=
source=("https://raw.githubusercontent.com/Zeioth/wofi-calc/master/wofi-calc.sh")
source=("git+$url")
noextract=()
sha256sums=('0bc4930e7df685389309198ce214ebf3b88aee71ca0198f586ff0afe6bea716b')
sha256sums=('SKIP')
validpgpkeys=()
pkgver() {
@ -31,5 +31,5 @@ pkgver() {
package() {
# Note: 'install' is a chmod+cp one-liner command by GNU
mkdir -p "$pkgdir"/usr/bin
install -m 555 "${srcdir}"/wofi-calc.sh "$pkgdir"/usr/bin/wofi-calc
install -m 555 "${srcdir}"/wofi-calc/wofi-calc.sh "$pkgdir"/usr/bin/wofi-calc
}