Files
main/network/chat/hexchat/actions.py
T
4fury-c3440d8 9e7b7e002b add hexchat.
2021-11-22 03:57:34 +03:00

17 lines
325 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 mesontools
def setup():
mesontools.configure("--prefix=/usr")
def build():
mesontools.build()
def install():
mesontools.install()