libvncserver 0.9.12

This commit is contained in:
idriskalp
2020-01-15 18:35:23 +03:00
parent ce6675b5db
commit fbaf953aaa
4 changed files with 84 additions and 9 deletions
+15 -8
View File
@@ -6,22 +6,29 @@
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import get
WorkDir = "libvncserver-LibVNCServer-%s" % get.srcVERSION()
def setup():
autotools.autoreconf("-vif")
autotools.configure("--disable-static \
--disable-dependency-tracking \
--with-24bpp \
--with-zlib \
--with-jpeg")
#autotools.autoreconf("-vif")
#autotools.configure("--disable-static \
#--disable-dependency-tracking \
#--with-24bpp \
#--with-zlib \
#--with-jpeg")
pisitools.dosed("libtool", " -shared ", " -shared -Wl,--as-needed")
#pisitools.dosed("libtool", " -shared ", " -shared -Wl,--as-needed")
cmaketools.configure("-DWITH_FFMPEG=OFF \
-DWITH_SASL=OFF \
-DWITH_SDL=OFF \
-DWITH_SYSTEMD=OFF \
")
def build():
autotools.make()
cmaketools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())