# Maintainer: Bradford Smith pkgname=informant pkgver=0.6.0 pkgrel=1 pkgdesc="An Arch Linux News reader and pacman hook" arch=('any') url="https://github.com/bradford-smith94/$pkgname" license=('MIT') install=informant.install makedepends=('python-setuptools') depends=('python' 'python-docopt' 'python-dateutil' 'python-feedparser' 'python-html2text' 'python-cachecontrol' 'python-lockfile' 'python-psutil') source=("https://github.com/bradford-smith94/$pkgname/archive/v$pkgver.tar.gz") options=(zipman) sha256sums=('aa1acb6677c70f389aee64efa706ae0c87c6339ae18d501f83fefa1c8bb750b4') build() { cd "$srcdir/$pkgname-$pkgver" /usr/bin/python setup.py build } package() { cd "$srcdir/$pkgname-$pkgver" export PYTHONHASHSEED=0 /usr/bin/python setup.py install --root="${pkgdir}" --optimize=1 --skip-build install -Dm 0644 $pkgname.hook -T $pkgdir/usr/share/libalpm/hooks/00-$pkgname.hook install -Dm 0644 LICENSE -t $pkgdir/usr/share/licenses/$pkgname/ install -Dm 0644 man/$pkgname.1 -t $pkgdir/usr/share/man/man1/ }