99c78352c5
new package ghostwriter
20 lines
386 B
Python
20 lines
386 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
|
|
|
|
def setup():
|
|
qt5.configure()
|
|
|
|
def build():
|
|
qt5.make()
|
|
|
|
def install():
|
|
qt5.install()
|
|
|
|
pisitools.dodoc("COPYING", "CREDITS.md", "README.md")
|