blob: 7274afa723e719f0eda0a7986f9905e20848c55c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $Id: PKGBUILD 160611 2012-06-02 21:10:00Z ibiru $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Maintainer: sh0 <mee@sh0.org>
pkgname=iptraf-ng
pkgver=1.1.3.1
pkgrel=1.1
pkgdesc="A console-based network monitoring utility (a fork of original iptraf)"
url="https://fedorahosted.org/iptraf-ng/"
arch=('i686' 'x86_64' 'mips64el')
depends=('ncurses')
license=('GPL2')
replaces=('iptraf')
options=('!libtool')
source=(https://fedorahosted.org/releases/i/p/$pkgname/$pkgname-$pkgver.tar.gz
0001-token-ring-kernel-v3.5-kill-off-token-ring-support.patch)
md5sums=('1a2c02944b0b012d6a3de96207610fa2'
'd5eab1e094b93f0e3a256cf9ccfaa9c3')
build() {
cd "$pkgname-$pkgver"
patch -p1 -i "$srcdir/0001-token-ring-kernel-v3.5-kill-off-token-ring-support.patch"
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --sbindir=/usr/sbin
make CFLAGS="$CFLAGS -std=gnu99"
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR=$pkgdir install
}
|