blob: 19a871e235f0dba2bd975d5182cf0372041252d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Contributor: Bug <bug2000@gmail.com>
# Maintainer: Bug <bug2000@gmail.com>
pkgname=xpra-winswitch-svn
pkgver=17723
pkgrel=2
pkgdesc="Modified version of xpra by Winswitch"
arch=('i686' 'x86_64')
url="http://xpra.org/"
license=('GPL2')
depends=('python2' 'pygtk' 'libxtst' 'python2-pillow' 'python2-lz4'
'ffmpeg' 'libvpx' 'xf86-video-dummy' 'libwebp' 'libxkbfile'
'python2-numpy' 'rencode' 'python2-opengl'
'python2-gtkglext' 'python-lz4' 'python-opengl' 'python2-opengl')
optdepends=('x264: Codec' 'python2-dbus: dbus features'
'python2-pycups: Printing support' 'python2-netifaces: mdns'
'python2-cryptography: Cryptography'
'python-cryptography: Cryptography'
'pam-selinux: Proxy Server Support')
conflicts=('xpra')
provides=('xpra')
makedepends=('subversion' 'python2-setuptools' 'cython2' 'uglify-js')
backup=('etc/xpra/xpra.conf' 'etc/xpra/xorg.conf'
# 'etc/xpra/cuda.conf' 'etc/xpra/nvenc.keys'
'etc/xpra/conf.d/05_features.conf'
'etc/xpra/conf.d/10_network.conf'
'etc/xpra/conf.d/12_ssl.conf'
'etc/xpra/conf.d/15_file_transfers.conf'
'etc/xpra/conf.d/16_printing.conf'
'etc/xpra/conf.d/20_sound.conf'
'etc/xpra/conf.d/30_picture.conf'
'etc/xpra/conf.d/35_webcam.conf'
'etc/xpra/conf.d/40_client.conf'
'etc/xpra/conf.d/42_client_keyboard.conf'
'etc/xpra/conf.d/50_server_network.conf'
'etc/xpra/conf.d/55_server_x11.conf'
'etc/xpra/conf.d/60_server.conf'
'etc/xpra/conf.d/65_proxy.conf')
source=("xpra::svn+https://www.xpra.org/svn/Xpra/trunk/src")
md5sums=('SKIP')
_svnmod=xpra
pkgver() {
LC_ALL=C svn info "$SRCDEST/$_svnmod" | awk '/Last Changed Rev/ {print $4}'
}
build() {
rm -rf "$srcdir/$_svnmod-build"
cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
cd "$srcdir/$_svnmod-build"
#
# BUILD HERE
#
#python2 setup.py build
export pkgdir
#python2 setup.py build
CFLAGS="$CFLAGS -fno-strict-aliasing" python2 setup.py build --without-enc_x265
}
package() {
cd "$srcdir/$_svnmod-build"
python2 setup.py install --root="${pkgdir}" --without-enc_x265
mv "${pkgdir}"/lib/* "${pkgdir}"/usr/lib/
rmdir "${pkgdir}/lib"
}
# vim:set ts=2 sw=2 et:
|