Files
erkanisik1 99c78352c5 new package and index
new package ghostwriter
2022-04-04 17:49:13 +03:00

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")