22 lines
390 B
Python
22 lines
390 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
|
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import qt5
|
|
|
|
NoStrip = "/"
|
|
|
|
def setup():
|
|
qt5.configure()
|
|
|
|
def build():
|
|
qt5.make()
|
|
|
|
def install():
|
|
qt5.install()
|
|
|
|
pisitools.dodoc("LICENSE.md", "README.md")
|