summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c94475c9a4a6660fff01a0d853998616ae6c580f (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: Jameson Pugh <imntreal@gmail.com>

pkgname=python-pushover
pkgver=0.4
pkgrel=3
pkgdesc="Python library for Pushover notification service."
arch=('any')
url='http://pythonhosted.org/python-pushover/'
license=('GPL')
depends=('python-requests')
makedepends=('python-distribute' 'git')
source=("git+https://github.com/Thibauth/python-pushover.git#tag=v${pkgver}")
sha256sums=('SKIP')

package() {
  cd "${srcdir}/${pkgbase}"

  2to3 pushover.py
  sed -i '/2to3/d' setup.py
  python setup.py install --root=${pkgdir} 
}

# vim:set ts=2 sw=2 et: