summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dd6f4541b0d3ac64ae3bf9fefee0bea2a7e307c8 (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
# Maintainer: Chau Duong <duongdominhchau@gmail.com>
_pkgname=mdformat-gfm
pkgname="${_pkgname}-git"
pkgver=0.3.5.r4.735781e
pkgrel=1
pkgdesc="Mdformat plugin for GitHub-Flavored Markdown compatibility"
arch=(any)
url="https://github.com/hukkin/mdformat-gfm"
license=('MIT')
depends=(
    mdformat
    mdformat-tables
    python-linkify-it-py
    python-markdown-it-py
    python-mdit_py_plugins
)
makedepends=(
    python-pip
    python-build
    python-wheel
    python-flit
    python-installer
)
conflicts=("$_pkgname")
provides=("$_pkgname")
source=("${_pkgname}::git+${url}.git")
sha256sums=(SKIP)

pkgver() {
    cd "$_pkgname"
    printf "%s" "$(git describe --long --tags | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}

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

package() {
    cd "$_pkgname"
    python -m installer --destdir="$pkgdir" dist/*.whl
}