blob: b855345734803f681301453253df376cdb63ec1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Bláithín Nic Aoidh <blawheen@gmail.com>
_pkgname=ranwhen
pkgname=${_pkgname}-git
pkgver=20170314
pkgrel=1
pkgdesc="Visualize when your system was running"
url="https://github.com/p-e-w/ranwhen"
arch=('any')
license=('GPL3')
provides=('ranwhen')
depends=('python' 'util-linux')
makedepends=('git')
source=(git+https://github.com/p-e-w/${_pkgname}.git)
md5sums=('SKIP')
package() {
cd "$srcdir/$_pkgname"
install -Dm755 "$_pkgname.py" "$pkgdir/usr/bin/$_pkgname"
}
# vim:set ts=4 sw=4 et:
|