1234567891011121314151617181920212223242526272829 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 2.
- # See the file https://www.gnu.org/copyleft/gpl.txt.
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import get
- from pisi.actionsapi import qt5
- def setup():
- shelltools.system('qmake CONFIG+="configure WITH_I18N" \
- QMAKE_CFLAGS_ISYSTEM= \
- PREFIX=/usr \
- LIBPREFIX=/usr/lib \
- L_MANDIR=/usr/share/man \
- QT5LIBDIR=/usr/lib/qt5 \
- L_ETCDIR="/etc" \
- lumina.pro')
- def build():
- qt5.make()
- def install():
- qt5.install()
- pisitools.dodoc("LICENSE", "README*")
|