summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 42c8d99f1a29db9d16e91e0218493f9a9fc79a83 (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
25
# Maintainer: Jason Brown <jason@jasonrbrown.dev>
# Contributor: Bjoern Franke <bjo+aur@schafweide.org>
pkgname=wallabag-client
pkgver=1.8.5
pkgrel=1
pkgdesc="Command line client for the self hosted read-it-later app Wallabag"
arch=('any')
url="https://github.com/artur-shaik/wallabag-client"
license=('MIT')
makedepends=('python-setuptools' 'python-wheel')
depends=('python-beautifulsoup4' 'python-pycryptodome' 'python-requests' 'python-click' 'python-click-spinner' 
 'python-click-repl' 'python-pyxdg' 'python-colorama' 'python-delorean' 'python-humanize'
 'python-lxml' 'python-tzlocal' 'python-tabulate' 'python-packaging' 'python-markdownify')
options=(!emptydirs)
source=(https://pypi.io/packages/source/w/$pkgname/$pkgname-$pkgver.tar.gz)
sha256sums=('50cf41bf54f3fe0ccf2238a0fb9a3a2b5bf4ede26925b5abad4d8dab23d2b70c')

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  python setup.py install --root="$pkgdir/" --optimize=1
  install -Dm644 LICENSE \
		"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}

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