Files
main/network/analyzer/iftop/actions.py
T
erkanisik 146bd9fe35 add package and index
add package, iftop, minicom,tcdump, focuswirter
2021-08-10 11:48:32 +03:00

23 lines
499 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
pisitools.cflags.add("-fcommon")
autotools.configure()
def build():
autotools.make()
def install():
pisitools.dosbin("iftop")
pisitools.doman("iftop.8")
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README*", "COPYING")