blob: be2f8c36b88ad9a024b47d95b828e69cf0188d75 (
plain) (
tree)
|
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se>
pkgname=mongotimer
pkgver=1.1.1
pkgrel=1
pkgdesc='A humongous timer or stopwatch for the terminal'
arch=(any)
url='https://github.com/maandree/mongotimer'
license=('custom:ISC')
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
sha256sums=(8dc220fd9918ae0e588f2b91336f5ffd2c3a9a3141fca24bd6908fc9fe3731d0)
build() {
cd "$srcdir/mongotimer-$pkgver"
make PREFIX=/usr
}
package() {
cd "$srcdir/mongotimer-$pkgver"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
|