summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5219d5a5c1d095c407f145014c170829ebf6c3a0 (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
# Maintainer: timescam <timescam at duck dot com>
# Contributor: Crestwave <crest.wave@yahoo.com>

pkgname=peaclock
pkgver=0.4.3
pkgrel=2
pkgdesc="A colourful binary clock for the terminal"
arch=('x86_64')
url="https://github.com/octobanana/peaclock"
license=('MIT')
makedepends=('cmake')
depends=('icu')
source=("$url/archive/$pkgver.tar.gz")
sha256sums=('3de32486e45ddf6a62c591619b5373d23c8eaf885975441ae581ca7241c48012')

build() {
  cd "$pkgname-$pkgver"
  ./RUNME.sh build
}

package() {
  cd "$pkgname-$pkgver"
  install -Dm755 build/release/peaclock -t "$pkgdir/usr/bin"
  install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
  install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
}