blob: edf9cc4bb6f138e5fef1cf1fccfa9eeeb4daddca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: neodarz <neodarz@neodarz.net>
# Contributor: John Jenkins <twodopeshaggy@gmail.com>
pkgname=clockr
pkgver=1.0
pkgrel=1
pkgdesc="simple curses clock wirtten in python"
arch=('any')
url="https://github.com/shaggytwodope/clockr"
license=('MIT')
depends=('python' 'ncurses')
source=("https://github.com/shaggytwodope/clockr/archive/v$pkgver.tar.gz")
md5sums=('65dea52c5af733a97815827e2ce61148')
package() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1
}
|