Date: Friday, November 11, 2022 @ 19:59:21
Author: arojas
Revision: 461186
archrelease: copy trunk to kde-unstable-x86_64
Added:
kbookmarks/repos/kde-unstable-x86_64/
kbookmarks/repos/kde-unstable-x86_64/PKGBUILD
(from rev 461185, kbookmarks/trunk/PKGBUILD)
kbookmarks/repos/kde-unstable-x86_64/keys/
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: kbookmarks/repos/kde-unstable-x86_64/PKGBUILD (from rev 461185,
kbookmarks/trunk/PKGBUILD)
===================================================================
--- kde-unstable-x86_64/PKGBUILD (rev 0)
+++ kde-unstable-x86_64/PKGBUILD 2022-11-11 19:59:21 UTC (rev 461186)
@@ -0,0 +1,30 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kbookmarks
+pkgver=5.100.0
+pkgrel=1
+pkgdesc='Support for bookmarks and the XBEL format'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kxmlgui)
+makedepends=(extra-cmake-modules qt5-tools qt5-doc doxygen)
+groups=(kf5)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('236cf8eef90b1a9737948d10e3c9aae1b6ca35ff7d5b2621b3a2aa61675e84ae'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+options=(debug)
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DBUILD_QCH=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}