Files
main/network/chat/toxic/actions.py
T
2022-12-04 19:52:40 +03:00

22 lines
451 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 autotools, get
j = ''.join([
' PREFIX=/usr',
' ENABLE_ASAN=0',
' DISABLE_AV=0',
' DISABLE_X11=0',
' DISABLE_GAMES=1 '
])
def build():
autotools.make(j)
def install():
autotools.rawInstall("DESTDIR=%s PREFIX=/usr" % get.installDIR())