blob: 781b6928ccbfae3e7ec1dfccc62f73b102f80aee (
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
|
# Maintainer (AUR): Johan Reitan (venatux) <johan.reitan@gmail.com>
# Contributer (AUR): Kenneth Lyons (ixjlyons) <ixjlyons@gmail.com>
# parabola changes and rationale:
# no changes.
pkgname=python-poppler-qt5
pkgver=0.25.1
pkgrel=1
pkgdesc='Python binding to libpoppler-qt5.'
arch=('any')
# url="https://github.com/wbsoft/${pkgname}"
url="https://github.com/zehome/$pkgname"
license=('LGPL')
depends=('python-pyqt5' 'poppler-qt5')
makedepends=('python-sip-pyqt5' 'python-sip' 'sip' 'python-setuptools')
# source=("https://github.com/wbsoft/${pkgname}/archive/v${pkgver}.tar.gz")
source=("https://github.com/zehome/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('f3d0f649964872275bd8e5ac45b9a7915ca18a4b2a46de904cd920e2c67a8627')
package() {
cd "$pkgname-$pkgver"
python setup.py install --prefix=/usr --root="$pkgdir" --optimize 1
}
|