146bd9fe35
add package, iftop, minicom,tcdump, focuswirter
23 lines
499 B
Python
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")
|