summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3ec38574e8f6a3f0a25f699d415497b5f1283d07 (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
# Maintainer: Ianis Vasilev <ianis@ivasilev.net>
pkgname=python-unicodeit
_pkgbasename=${pkgname:7}
pkgver=0.7.5
pkgrel=2
pkgdesc="Converts LaTeX tags to unicode"
license=('MIT')
url='https://github.com/v--/unicodeit'
makedepends=(python-build python-installer python-wheel)
depends=(python)
source=("https://pypi.io/packages/source/${_pkgbasename:0:1}/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz")
sha256sums=('f100df7a1b8c64d7b5160859426b641cd9f30218173c5a3450842370e242a168')
arch=(any)

_fullsrcdir() {
    echo "${srcdir}/${_pkgbasename}-${pkgver}"
}

build() {
    cd $(_fullsrcdir)
    python -m build --wheel --no-isolation
}

package() {
    cd $(_fullsrcdir)
    python -m installer --destdir="$pkgdir" dist/*.whl
    install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}