Date: Friday, March 17, 2023 @ 18:09:19
Author: arojas
Revision: 471084
archrelease: copy trunk to extra-x86_64
Added:
kweathercore/repos/
kweathercore/repos/extra-x86_64/
kweathercore/repos/extra-x86_64/PKGBUILD
(from rev 471083, kweathercore/trunk/PKGBUILD)
kweathercore/repos/extra-x86_64/keys/
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: kweathercore/repos/extra-x86_64/PKGBUILD (from rev 471083,
kweathercore/trunk/PKGBUILD)
===================================================================
--- repos/extra-x86_64/PKGBUILD (rev 0)
+++ repos/extra-x86_64/PKGBUILD 2023-03-17 18:09:19 UTC (rev 471084)
@@ -0,0 +1,26 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=kweathercore
+pkgver=0.7
+pkgrel=1
+pkgdesc='Library to facilitate retrieval of weather information including
forecasts and alerts'
+arch=(x86_64)
+license=(GPL)
+url='https://invent.kde.org/libraries/kweathercore'
+depends=(ki18n kholidays qt5-location)
+makedepends=(extra-cmake-modules doxygen qt5-tools)
+source=(https://download.kde.org/stable/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('04dde83ae543163735776dc50edab3510247d4825432840a78fade9b237a79fd'
+ 'SKIP')
+validpgpkeys=(0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D) # Bhushan Shah
(mykolab address) <[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DBUILD_QCH=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}