summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 630a126c6c0f3a38a572a3c9b37d7e4b01d32ec8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Maintainer:  JP-Ellis <josh@jpellis.me>
pkgname=papis
pkgver=0.7.5
pkgrel=1
pkgdesc="Papis is a powerful and highly extensible command-line based document and bibliography manager."
arch=('any')
url="https://github.com/papis/papis"
license=('GPL')
depends=('python'
         'python-argcomplete'
         'python-arxiv2bib'
         'python-beautifulsoup4'
         'python-bibtexparser'
         'python-chardet'
         'python-click'
         'python-future'
         'python-filetype'
         'python-habanero'
         'python-isbnlib'
         'python-prompt_toolkit>=2.0.0'
         'python-pylibgen'
         'python-pyparser'
         'python-pyparsing'
         'python-pyaml'
         'python-slugify'
         'python-requests'
        )
optdepends=(
         'python-papis-python-rofi'
)
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('1a2a3f6673741f858d4ba41b64255e2fca33b17c5abb642608dbb4ee117d0ac4')
noextract=()

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  sed -i '/configparser/d' setup.py
  python setup.py build
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
}

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