summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7f4574e36e6fddf2d12815fc24fa251b52dd510b (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
# Maintainer: Letu Ren <fantasquex at gmail dot com>
# Contributor: Dimitris Kiziridis <ragouel at outlook dot com>
# Contributor: Joel Almeoda <aullidolunar at gmail d0t c0m>

pkgname=qualcoder
_pkgname=QualCoder
pkgver=2.9
pkgrel=2
pkgdesc="Qualitative data analysis for text, images, audio, video. Cross platform. Python 3.6 or newer and PyQt5."
arch=('any')
url='https://github.com/ccbogel/QualCoder'
license=('MIT')
depends=('python-pyqt5'
         'python-lxml'
         'python-pillow'
         'python-ebooklib'
         'python-pdfminer'
         'python-ply'
         'python-chardet'
         'python-openpyxl'
         'python-pydub'
         'python-speechrecognition')
makedepends=('python-setuptools')
_name=${pkgname#python-}
source=("https://github.com/ccbogel/QualCoder/archive/refs/tags/2.9.tar.gz")
sha256sums=('SKIP')

build() {
    cd "${_pkgname}-${pkgver}"
    python setup.py build
}

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