summaryrefslogtreecommitdiff
path: root/community/smartypants/APKBUILD
blob: a10537e14a5755dbaf5d5b5e0d9155f4d58233db (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
# Contributor: Patrycja Rosa <alpine@ptrcnull.me>
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
pkgname=smartypants
pkgver=2.0.1
pkgrel=1
pkgdesc="Translate plain ASCII punctuation characters into “smart” typographic punctuation HTML entities"
url="https://github.com/leohemsted/smartypants.py"
arch="noarch"
license="BSD"
depends="python3"
makedepends="py3-setuptools py3-sphinx"
subpackages="$pkgname-doc"
source="https://github.com/leohemsted/smartypants.py/archive/v$pkgver/smartypants-$pkgver.tar.gz"
builddir="$srcdir/smartypants.py-$pkgver"

build() {
	python3 setup.py build

	make -C docs man
}

check() {
	python3 setup.py test
}

package() {
	python3 setup.py install --skip-build --root="$pkgdir"

	install -Dm644 docs/_build/man/smartypants.1 "$pkgdir"/usr/share/man/man1/smartypants.1
}

sha512sums="
d47a866a5478c3520251f87a93a468a5eea10318b24b2e8d4bc918d533b5a5789aa56d3a8d5fb8ccff9572fb63e5b6f2eafc44f93fb57a19e6621ebef5d64d9d  smartypants-2.0.1.tar.gz
"