Date: Thursday, February 13, 2020 @ 19:05:21
Author: andyrtr
Revision: 375553
archrelease: copy trunk to testing-x86_64
Added:
x2goclient/repos/testing-x86_64/
x2goclient/repos/testing-x86_64/PKGBUILD
(from rev 375552, x2goclient/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: x2goclient/repos/testing-x86_64/PKGBUILD (from rev 375552,
x2goclient/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-13 19:05:21 UTC (rev 375553)
@@ -0,0 +1,39 @@
+# Maintainer: AndyRTR <[email protected]>
+# Contributor: Gerhard Brauer <[email protected]>
+# Contributor: Richard Murri <[email protected]>
+
+pkgname=x2goclient
+pkgver=4.1.2.2
+pkgrel=1
+arch=('x86_64')
+license=('GPL2')
+url="https://wiki.x2go.org/doku.php"
+pkgdesc="a graphical client (Qt5) for the X2Go system"
+makedepends=('qt5-tools' 'man2html' 'xdg-utils' 'xorg-xauth')
+depends=('qt5-x11extras' 'qt5-svg'
+ 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 'hicolor-icon-theme')
+# FS#48088
+optdepends=('xorg-xauth: may be required by X2goservers running a different
linux distribution giving MIT-COOKIE errors')
+source=(https://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('c9953267c40fa67119ad96a73bacb1f266196da2059f0cdcd1b8d5199421d12a'
+ 'SKIP')
+validpgpkeys=('9BFBAEE86C0AA5FFBF2207829AF46B3025771B31' # Mike Gabriel
<[email protected]>
+ '1AD23D1B8F087A35AB74BDE9F4A7678C9C6B0B2B') # "X2go Git
Administrator <[email protected]>"
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+ sed -i "s:-o root -g root ::" Makefile
+ sed -i -e 's/qt4/qt5/' Makefile
+}
+
+build() {
+ cd ${pkgname}-${pkgver}
+ make PREFIX=/usr
+ make PREFIX=/usr build_man
+}
+
+package() {
+
+ cd ${pkgbase}-${pkgver}
+ make PREFIX=/usr DESTDIR="$pkgdir" install_client install_man
+}