summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e2c4eecced2e0a8cef43a6c475abb9553874258e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Jan Sonntag <jaso35 at gmail dot com>

pkgname=asciigraph-bin
pkgver=0.5.4
pkgrel=1
pkgdesc="Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies"
arch=('x86_64')
url='https://github.com/guptarohit/asciigraph'
license=('BSD')
provides=('asciigraph')
conflicts=('asciigraph')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/guptarohit/asciigraph/releases/download/v${pkgver}/asciigraph_${pkgver}_Linux_${arch}.tar.gz")
sha256sums=('62a8680d0bf66868103aa893923864b4ebf2fc211c0168dc835b6eb79c28aaca')

package() {
  install -Dm755 asciigraph "${pkgdir}/usr/bin/asciigraph"
  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/asciigraph/LICENSE"
  install -Dm644 README.md "${pkgdir}/usr/share/doc/asciigraph/README.md"
}