summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 507c755f5a5131832374352c7108a314d14522b9 (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
# Maintainer: gilcu3

_pkgname=ttyplot
pkgname=$_pkgname-git
pkgver=r446.ec32294
pkgrel=1
pkgdesc="A realtime plotting utility for terminal with data input from stdin"
arch=('x86_64')
license=('Apache 2.0')
url="https://github.com/tenox7/ttyplot"
source=('git+https://github.com/tenox7/ttyplot.git')
sha256sums=('SKIP')
depends=('ncurses')

pkgver() {
 	cd $srcdir/$_pkgname
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd $srcdir/$_pkgname
	make
}

package() {
	cd $srcdir/$_pkgname
    install -Dm644 $_pkgname.1 ${pkgdir}/usr/share/man/man1/$_pkgname.1
	install -D -m755 $_pkgname  $pkgdir/usr/bin/$_pkgname
}