blob: b213a60732791a6f3e16332d15a0d421bd3fb41d (
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=2.2
pkgrel=1
pkgdesc='Just a humongous clock for the terminal'
arch=(any)
url='https://github.com/maandree/mongoclock'
license=('GPL3')
depends=(glibc linux)
makedepends=(linux-api-headers general-preprocessor)
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=(ae2298905a2f729679fddaeb732183b95607438af62dca02bdf5ae0a1b29e950)
build() {
cd "$srcdir/mongoclock-$pkgver"
make
}
package() {
cd "$srcdir/mongoclock-$pkgver"
make DESTDIR="${pkgdir}" install
}
|