summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart van Strien2023-12-03 15:57:17 +0100
committerBart van Strien2023-12-03 15:57:17 +0100
commit50b09c4caca1ce8304deaa2692bc188cf69aa945 (patch)
tree50732aee469b630ee7214eaf091756a5e2aa83a7
parent98df5ff6bd30a68630c80764991cbd21335cdb49 (diff)
downloadaur-50b09c4caca1ce8304deaa2692bc188cf69aa945.tar.gz
Fix typo in pkgver function name
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index cf5431d33ccd..8ca3eac63399 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Linus Sjögren <thelinx@unreliablepollution.net>
# Contributor: Andrzej Giniewicz < gginiu@gmail.com >
pkgname=love-git
-pkgver=20200816.9f62bafe
+pkgver=20231203.6eb8d546
pkgrel=1
pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting language to create dynamic gaming experiences."
arch=(i686 x86_64 armv6h armv7h)
@@ -18,7 +18,7 @@ makedepends=('git')
options=(!strip)
sha256sums=('SKIP')
-pgkver() {
+pkgver() {
cd $srcdir/love
git log -1 --format='%cd.%h' --date=short | tr -d -
}