26 lines
826 B
Python
26 lines
826 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
def build():
|
|
autotools.make("USE_NETTLE=no USE_GNUTLS=no CCOPT='%s -fpie' CC=%s" % (get.CFLAGS(), get.CC()))
|
|
|
|
def install():
|
|
pisitools.dobin("ping")
|
|
|
|
for app in ["clockdiff", "rarpd", "tftpd", "arping", "rdisc", "tracepath", "traceroute6"]:
|
|
pisitools.dosbin(app)
|
|
|
|
# We will not need these if we set cap on postInstall like Fedora
|
|
shelltools.chmod("%s/usr/bin/ping" % get.installDIR(), 04711)
|
|
#shelltools.chmod("%s/usr/bin/ping6" % get.installDIR(), 04711)
|
|
|
|
pisitools.dodoc("RELNOTES*")
|