work for virtualbox qt5

This commit is contained in:
Ertuğrul Erata
2015-08-12 09:52:10 +03:00
parent 8373639c89
commit df50cf6e59
37 changed files with 1572 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "LibVNCServer-%s" % get.srcVERSION()
def setup():
autotools.configure("--disable-static \
--with-backchannel \
--disable-dependency-tracking \
--with-24bpp \
--with-zlib \
--with-jpeg")
pisitools.dosed("libtool", " -shared ", " -shared -Wl,--as-needed")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.remove("/usr/bin/linuxvnc")