blob: ae118a082b7448ea1080aa1245961a48fc1a85e6 (
plain)
1 # $Id: Pkgfile 1330 2006-11-13 20:54:04Z prologic $
2 # Description: Curses based tool to monitor connectivity of network hosts.
3 # URL: http://sntop.sourceforge.net/
4 # Packager: James Mills prologic at shortcircuit dot net dot au
5 # Maintainer: James Mills prologic at shortcircuit dot net dot au
6 # Depends on: fping
7
8 name=sntop
9 version=1.4.3
10 release=1
11 source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
12
13 build () {
14 cd $name-$version
15 ./configure --prefix=/usr
16 sed -i "/^CFLAGS/s/-O2 -pipe/$CFLAGS/" Makefile
17 make
18 mkdir -p $PKG/usr/{bin,man/man1,etc}
19 make prefix=$PKG/usr install
20 chown -R root:root $PKG
21 }
|