17 lines
380 B
Python
17 lines
380 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
|
|
|
from pisi.actionsapi import python3modules
|
|
from pisi.actionsapi import pisitools
|
|
|
|
def build():
|
|
python3modules.compile()
|
|
|
|
def install():
|
|
python3modules.install()
|
|
|
|
pisitools.dodoc("COPYING", "COPYING.LESSER")
|