Date: Sunday, January 22, 2023 @ 23:13:31
Author: arojas
Revision: 1387801
archrelease: copy trunk to community-staging-x86_64
Added:
datovka/repos/community-staging-x86_64/
datovka/repos/community-staging-x86_64/PKGBUILD
(from rev 1387800, datovka/trunk/PKGBUILD)
----------+
PKGBUILD | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Copied: datovka/repos/community-staging-x86_64/PKGBUILD (from rev 1387800,
datovka/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-01-22 23:13:31 UTC (rev 1387801)
@@ -0,0 +1,30 @@
+# Maintainer: Jaroslav Lichtblau <[email protected]>
+
+pkgname=datovka
+pkgver=4.21.1
+pkgrel=2
+pkgdesc="GUI application for a 'Databox' - an electronic communication
interface endorsed by the Czech government"
+arch=('i686' 'x86_64')
+url='https://www.datovka.cz/'
+license=('custom')
+depends=('qt6-base' 'qt6-svg' 'qt6-5compat' 'quazip-qt6' 'qt6-websockets'
+ 'libdatovka' 'openssl' 'hicolor-icon-theme')
+makedepends=('qt6-tools')
+source=(https://secure.nic.cz/files/datove_schranky/$pkgver/$pkgname-$pkgver.tar.xz)
+sha256sums=('f0ec25d0d19d8a56b806a2ef432c9aefb65db3d6b433f0e0cec4c4abcd2ef06c')
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ /usr/lib/qt6/bin/lrelease datovka.pro
+ qmake6 PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ make INSTALL_ROOT="${pkgdir}" install
+
+ install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
+}