blob: 34b8206411149d56d4accd1dad01a3141615a68a (
plain) (
blame)
| 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
 | # Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=mongoclock
pkgver=1
pkgrel=1
pkgdesc='Just a humongous clock for the terminal'
arch=(any)
url='https://github.com/maandree/mongoclock'
license=('custom: GNUAllPermissive')
depends=(sh python3 coreutils)
makedepends=(sed texinfo gzip)
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=(67bc1071904ca03f0c70cd606e8f5b6ff91b130b80553d77864a63fb581954c7)
build() {
    cd "$srcdir/mongoclock-$pkgver"
    make
}
package() {
    cd "$srcdir/mongoclock-$pkgver"
    make DESTDIR="${pkgdir}" install
}
 |