summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4bca1d61eaf022da352d603a9a0fd65f769b9f76 (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
# Maintainer: Narthorn <narthorn@gmail.com>

_pkgname=mtr
pkgname=$_pkgname-git
pkgver=v0.86.r25.g4831ee5
pkgrel=1
arch=('any')
pkgdesc='Combines the functionality of traceroute and ping into one tool (CLI version, git)'
url='http://www.bitwizard.nl/mtr/'
license=('GPL')
makedepends=('git' 'ncurses')
depends=('ncurses')
provides=($_pkgname)
conflicts=($_pkgname)
source=('git+https://github.com/traviscross/mtr'
        '0001-curses-Fix-background-transparency-in-terminal.patch')
sha256sums=('SKIP'
			'4ff43c424870514568922244b2247a7052c14c15ca7cc649a23112dc3d7e274f')

pkgver() {
	cd $_pkgname
	git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' 
}

prepare() {
	cd $_pkgname
	git am $srcdir/0001-curses-Fix-background-transparency-in-terminal.patch 
}

build() {
    cd $_pkgname
	./bootstrap.sh
    ./configure --prefix=/usr --without-gtk --sbindir=/usr/bin
    make
}

package() {
    cd $_pkgname
    make DESTDIR="$pkgdir" install
}