summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0edb2aae50d0624da4cd4c1833412440462d20e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: stef204 < base64 -d c3RlZjIwNEB5YW5kZXguY29tCg== >

pkgname=etmtk-git
pkgver=r1148.d971c97
pkgrel=3
pkgdesc="Manage events and tasks using simple text files."
arch=('any')
url="http://people.duke.edu/~dgraham/etmtk/"
license=('GPL')
depends=('tk' 'python-dateutil' 'python-yaml')
optdepends=('python-icalendar: iCalendar support')
makedepends=('python-setuptools')
source=("git+https://github.com/dagraham/etm-tk.git")
md5sums=('SKIP')

pkgver() {
  cd etm-tk
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd etm-tk
  python setup.py install --prefix=/usr --root="$pkgdir"
}