Files
main/programming/misc/libnotify/actions.py
T
2020-01-17 16:58:24 +03:00

28 lines
625 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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
from pisi.actionsapi import get
def setup():
#autotools.autoreconf("-vif")
#autotools.configure("--disable-static")
mesontools.configure()
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "COPYING")