desktop/x2goclient/PKGBUILD
2016-11-24 23:27:28 +00:00

34 lines
996 B
Bash

pkgname=x2goclient
pkgver=4.0.5.2
pkgrel=1
pkgdesc="a graphical client (Qt4) for the X2Go system"
arch=('x86_64')
license=('GPL2')
url="http://www.x2go.org"
depends=('qt' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 'hicolor-icon-theme' 'xdg-utils')
makedepends=('man2html')
install=x2goclient.install
source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz)
sha1sums=('350012ecf5bed14073c8a3545bf783f015f061ca')
build() {
cd ${pkgname}-${pkgver}
sed -i "s:-o root -g root ::" Makefile
sed -i "s/qmake-qt4/qmake/" config_linux.sh
sed -i "s/qmake-qt4/qmake/" config_linux_plugin.sh
sed -i "s/qmake-qt4/qmake/" Makefile
sed -i "s/lrelease-qt4/lrelease/" Makefile
#make PREFIX=/usr
#make PREFIX=/usr build_man # target broken and making the build hang
make PREFIX=/usr build_pluginprovider
make PREFIX=/usr build_client
make PREFIX=/usr build_plugin
}
package() {
cd ${pkgname}-${pkgver}
make PREFIX=/usr DESTDIR="$pkgdir" install
}