Files
main/network/web/otter-browser/actions.py
T
2020-07-06 14:10:34 +03:00

18 lines
394 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools, shelltools, cmaketools
def setup():
cmaketools.configure()
def build():
cmaketools.make()
def install():
cmaketools.install()
pisitools.dodoc("COPYING", "CHANGELOG", "README.md")