blob: 64352bd031e7a3d58eb0b6fd4c7a7830947a52db (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# $Id: PKGBUILD 178764 2013-02-26 18:56:25Z ioni $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
pkgbase=mtr
pkgname=(mtr mtr-gtk)
pkgver=0.83
pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
makedepends=('ncurses' 'gtk2')
source=(ftp://ftp.bitwizard.nl/mtr/$pkgbase-$pkgver.tar.gz
mtr-glib2.patch)
url="http://www.bitwizard.nl/mtr/"
md5sums=('2e3a40f2da47748ad0053a5d678b9b4a'
'6bce08e1de7c6835bdda893847981bc8')
build() {
patch -Np0 -i mtr-glib2.patch
cp -r $pkgbase-$pkgver $pkgbase-cli
cd mtr-cli
./bootstrap.sh
./configure --prefix=/usr --without-gtk
make
cd "$srcdir/$pkgbase-$pkgver"
./bootstrap.sh
./configure --prefix=/usr
make
}
package_mtr() {
pkgdesc="Combines the functionality of traceroute and ping into one tool (CLI version)"
depends=('ncurses' 'glib2')
cd mtr-cli
make DESTDIR="$pkgdir" install
}
package_mtr-gtk() {
pkgdesc="Combines the functionality of traceroute and ping into one tool (GTK version)"
depends=('ncurses' "gtk2")
conflicts=("mtr")
provides=("mtr=$pkgver")
cd $pkgbase-$pkgver
make DESTDIR="$pkgdir" install
}
|