Files
main/util/admin/htop/actions.py
T
4fury-c3440d8 a6ed0dfca6 add deps.
2020-09-11 08:01:06 +03:00

25 lines
733 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 shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.system("sed -i 's|ncursesw/curses.h|curses.h|' RichString.[ch] configure")
autotools.configure("--enable-taskstats \
--enable-unicode \
--enable-cgroup")
def build():
autotools.make("-j1")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")