41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# Template file for 'xpra'
|
|
pkgname=xpra
|
|
version=1.0.4
|
|
revision=1
|
|
build_style=python2-module
|
|
conf_files="
|
|
/etc/xpra/xpra.conf
|
|
/etc/xpra/xorg.conf
|
|
/etc/xpra/conf.d/*
|
|
/etc/xpra/cuda.conf
|
|
/etc/xpra/nvenc.keys"
|
|
pycompile_module="xpra"
|
|
hostmakedepends="python pkg-config python-Cython"
|
|
makedepends="ffmpeg-devel libXcomposite-devel libXdamage-devel libXrandr-devel
|
|
libXtst-devel libwebp-devel libxkbfile-devel pygtk-devel x264-devel
|
|
$(vopt_if vpx libvpx-devel)"
|
|
depends="pygtk python-Pillow xorg-server-xvfb python-rencode python-lz4
|
|
python-cups xf86-video-dummy python-PyOpenGL-accelerate pulseaudio cups
|
|
python-dbus xauth python-numpy"
|
|
short_desc="Like screen(1) for X"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2"
|
|
homepage="http://xpra.org/"
|
|
distfiles="https://xpra.org/src/${pkgname}-${version}.tar.xz"
|
|
checksum=c841940957761e60454eac44c955d174b3d864c853f28b387e784a6d85fc9924
|
|
|
|
build_options="vpx"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
armv6*) ;;
|
|
*) build_options_default+=" vpx" ;;
|
|
esac
|
|
|
|
post_extract() {
|
|
sed -i 's/-Werror/-Wno-error/g' setup.py # ugh
|
|
}
|
|
|
|
post_install() {
|
|
sed -i "s:${DESTDIR/\/\//\/}::" ${DESTDIR}/etc/xpra/conf.d/55_server_x11.conf
|
|
rm -rf ${DESTDIR}/etc/init.d
|
|
}
|