summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e0f84a943b0fcf7cfe2425ed66b9b2731fb2b5f1 (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
# Maintainer: Akkenoth <akkenoth at gmail dot com>

pkgname=colortail-git
pkgver=20160223.3b76525e
_gitver=3b7625ebaf3d80fa6a5951bdac00e16fcccf9dd9
pkgrel=1
pkgdesc="Colortail works like tail but can optionally read one or more config files where it's specified which patterns results in which colors."
arch=("i686" "x86_64")
url="https://github.com/joakim666/colortail"
license=("GPL")
groups=()
depends=()
makedepends=("git")
provides=("colortail")
conflicts=("colortail")
replaces=("colortail")
backup=()
options=()
install=
source=("https://github.com/joakim666/colortail/archive/${_gitver}.zip")
noextract=()
md5sums=("3d2af1106435de1fcd47ead4ce76a53d")

build() {
	cd "colortail-${_gitver}"
	./autogen.sh --prefix=/usr
	make
}

package() {
	cd "colortail-${_gitver}"
	make DESTDIR="$pkgdir/" install
}