Date: Friday, October 21, 2022 @ 18:29:05
Author: felixonmars
Revision: 1333195
archrelease: copy trunk to community-staging-x86_64
Added:
libdatovka/repos/community-staging-x86_64/
libdatovka/repos/community-staging-x86_64/PKGBUILD
(from rev 1333194, libdatovka/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: libdatovka/repos/community-staging-x86_64/PKGBUILD (from rev 1333194,
libdatovka/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2022-10-21 18:29:05 UTC (rev 1333195)
@@ -0,0 +1,27 @@
+# Maintainer: Jaroslav Lichtblau <[email protected]>
+
+pkgname=libdatovka
+pkgver=0.2.1
+pkgrel=3
+pkgdesc="ISDS client library"
+arch=('x86_64')
+url="https://www.datovka.cz/cs/pages/libdatovka.html"
+license=('LGPL')
+depends=('libxml2' 'openssl' 'curl')
+makedepends=('docbook-xsl')
+source=(https://secure.nic.cz/files/datove_schranky/$pkgname/$pkgname-$pkgver.tar.xz)
+sha256sums=('12735207c2ab7c2ce0ce342884dab3ce32b9cded84e529ba7ce072f68ac05fda')
+
+build() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr \
+
--with-docbook-xsl-stylesheets=/usr/share/xml/docbook/xsl-stylesheets-1.79.2
+ make
+}
+
+package() {
+ cd "${srcdir}"/$pkgname-$pkgver
+
+ make DESTDIR="${pkgdir}" install
+}