Files
main/util/admin/btop/actions.py
T
4fury-c3440d8 f43e9c0363 btop-v1.4.6
2026-02-19 21:42:13 +04:00

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