Files
main/util/admin/btop++/actions.py
T
4fury-c3440d8 fcad3467b5 btop++.
2022-11-10 16:50:31 +03:00

25 lines
457 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([
' VERBOSE=true',
' QUIET=true',
' STRIP=true',
' ARCH=x86_64',
' PREFIX=/usr '
])
def setup():
pass
def build():
autotools.make(j)
def install():
autotools.rawInstall("DESTDIR=%s %s" % (get.installDIR(), j))