Date: Friday, August 17, 2018 @ 17:15:16
Author: arojas
Revision: 332109
archrelease: copy trunk to staging-x86_64
Added:
x2goclient/repos/staging-x86_64/
x2goclient/repos/staging-x86_64/PKGBUILD
(from rev 332108, x2goclient/trunk/PKGBUILD)
----------+
PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
Copied: x2goclient/repos/staging-x86_64/PKGBUILD (from rev 332108,
x2goclient/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-08-17 17:15:16 UTC (rev 332109)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: AndyRTR <[email protected]>
+# Contributor: Gerhard Brauer <[email protected]>
+# Contributor: Richard Murri <[email protected]>
+
+pkgname=x2goclient
+pkgver=4.1.2.1
+pkgrel=2
+arch=('x86_64')
+license=('GPL2')
+url="http://www.x2go.org"
+pkgdesc="a graphical client (Qt4) for the X2Go system"
+makedepends=(#'qt5-x11extras' 'qt5-tools' 'qt5-svg' 'phonon-qt5'
+ 'man2html' 'xdg-utils' 'xorg-xauth')
+depends=('qt4' '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=('1c18981f0a39929624de9472b0e6c3fa2ac7842837dd306db318af54c5fff2af'
+ '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 -e 's/-lssh_threads//' -i x2goclient.pro # Fix build with libssh 0.8
+}
+
+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
+}