43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
#!/usr/bin/env 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 pisitools
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import qt6
|
|
from pisi.actionsapi import get
|
|
|
|
|
|
def setup():
|
|
shelltools.cd("%s" % get.workDIR())
|
|
shelltools.move("signond-*", "signond-%s" % get.srcVERSION())
|
|
shelltools.copy("signond-*", "signond-qt6")
|
|
shelltools.cd("signond-%s" % get.srcVERSION())
|
|
|
|
shelltools.system("qmake PREFIX=/usr LIBDIR=lib")
|
|
|
|
# qt6.configure()
|
|
shelltools.cd("../signond-qt6")
|
|
shelltools.system("qmake6-qt6 PREFIX=/usr LIBDIR=lib")
|
|
|
|
shelltools.cd("..")
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
# qt6.make()
|
|
shelltools.cd("../signond-qt6")
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.rawInstall("INSTALL_ROOT=%s" % get.installDIR())
|
|
|
|
# qt6.install()
|
|
shelltools.cd("../signond-qt6")
|
|
autotools.rawInstall("INSTALL_ROOT=%s" % get.installDIR())
|
|
|
|
pisitools.dodoc("COPYING", "TODO", "README*")
|