git » grantlee.git » commit 8d22231

Update to 5.3.0

author Antonio Rojas
2022-09-10 16:47:45 UTC
committer Antonio Rojas
2022-09-10 16:47:45 UTC
parent c4ec8230c928b91cb9b4acd4f250aa987bea9126

Update to 5.3.0

PKGBUILD +11 -17

diff --git a/PKGBUILD b/PKGBUILD
index 55b88c6..da659e1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,34 +3,28 @@
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
 
 pkgname=grantlee
-pkgver=5.2.0
-pkgrel=3
-pkgdesc="A string template engine based on the Django template system and written in Qt5"
+pkgver=5.3.0
+pkgrel=1
+pkgdesc='A string template engine based on the Django template system and written in Qt'
 arch=(x86_64)
-url="https://github.com/steveire/grantlee"
+url='https://github.com/steveire/grantlee'
 license=(LGPL2.1)
 depends=(qt5-declarative)
 makedepends=(cmake doxygen graphviz)
-source=("http://downloads.grantlee.org/grantlee-$pkgver.tar.gz"{,.asc})
-sha256sums=('d6cd04de39a073a787c9ab8e72a0888e40779d21b83fbc788a1b36d31ac659d5'
+source=(http://downloads.grantlee.org/grantlee-$pkgver.tar.gz{,.asc})
+sha256sums=('8c52cd4b0fa86f2bb0a3627d6bee8286f269cd7122a0115101cdec9441669ff2'
             'SKIP')
 validpgpkeys=(FCA530E51EE4331C2DF16637D264C7B1D02D6509) # Stephen Kelly <steveire@gmail.com>
 
-prepare() {
-  mkdir -p build
-}
-
 build() {
-  cd build
-  cmake ../$pkgname-$pkgver \
+  cmake -B build -S $pkgname-$pkgver \
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DBUILD_TESTS=OFF
-  make
-  make docs
+  cmake --build build
+  cmake --build build --target docs
 }
 
 package() {
-  cd build
-  make DESTDIR="$pkgdir" install
-  install -Dm644 apidox/* -t "$pkgdir"/usr/share/doc/$pkgname
+  DESTDIR="$pkgdir" cmake --install build
+  install -Dm644 build/apidox/* -t "$pkgdir"/usr/share/doc/$pkgname
 }