From a905e10bb3ec96890e3a74b0473bf40fa2a00ac5 Mon Sep 17 00:00:00 2001 From: Zeioth Date: Mon, 11 Apr 2022 02:41:59 +0200 Subject: [PATCH] @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) --- PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index f4e62ec..a9f5546 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -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 }