12345678910111213141516171819202122 |
- #!/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")
|