summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnmanuel2023-02-27 01:27:49 +0000
committerEnmanuel2023-02-27 01:27:49 +0000
commitfc3927541780a7c4396e05105c8ddcbdcdef96b5 (patch)
tree08bc6e54523ef8fb9479d310049f4440dca9e8ef
parentc7a33be5b9d401bf009d7aac117b8ee790481a9c (diff)
downloadaur-fc3927541780a7c4396e05105c8ddcbdcdef96b5.tar.gz
Fix missing pkgname
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3988f0ae3b42..265efaac2ecd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = diun-bin
pkgdesc = Receive notifications when an image is updated on a Docker registry.
pkgver = 4.24.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/crazy-max/diun
arch = x86_64
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 3d296343e40f..aa037fbb41d4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ _pkggit=diun
pkgname=diun-bin
pkgver=4.24.0
-pkgrel=1
+pkgrel=2
pkgdesc="Receive notifications when an image is updated on a Docker registry."
arch=('x86_64')
url="https://github.com/crazy-max/diun"
@@ -16,7 +16,7 @@ sha256sums=('3de1b4a0314a82dcaabe0bc82fbd28aab3eaecb6fb48ee768979c61bd654defa')
package() {
cd "${srcdir}"
- install -Dm755 ${pkgname} ${pkgdir}/usr/bin/${_pkggit}
+ install -Dm755 ${_pkggit} ${pkgdir}/usr/bin/${_pkggit}
install -Dm644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
install -Dm644 LICENSE ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
install -Dm644 CHANGELOG.md ${pkgdir}/usr/share/doc/${pkgname}/CHANGELOG.md