summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8a13213136e366c770b914413c3ff2fb1051d81d (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: kleintux <reg-archlinux AT klein DOT tuxli DOT ch> 
# Contributor: Jerome Leclanche <jerome@leclan.ch>
# NOTE: This package is officially named "spark", however that name
# conflicts with the Spark IM client. It is here renamed sparklines.

_pkgname=spark
pkgname=sparklines-git
pkgver=v1.0.1.33.gab88ac6
pkgrel=1
pkgdesc="Spark: Sparklines for your shell"
arch=("any")
url="https://zachholman.com/spark/"
license=("MIT")
makedepends=("git")
provides=("sparklines")
conflicts=("sparklines")
source=("git+https://github.com/holman/${_pkgname}.git")
sha256sums=("SKIP")

pkgver() {
	cd "${srcdir}/${_pkgname}"
	git describe --always | sed "s/-/./g"
}

package() {
	cd "${srcdir}/${_pkgname}"
	install -Dm755 "${_pkgname}" "${pkgdir}/usr/bin/${pkgname%-git}"
	install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname%-git}/README.md"
}