void-packages/srcpkgs/python-vint/template
2017-08-28 07:00:10 +02:00

36 lines
1 KiB
Bash

# Template file for 'python-vint'
pkgname=python-vint
version=0.3.13
revision=2
noarch=yes
wrksrc="vim-vint-${version}"
build_style=python-module
pycompile_module="vint"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools python-ansicolor python-chardet python-enum34
python-pathlib python-yaml"
short_desc="Lint tool for Vim script language (Python2)"
maintainer="Joseph LaFreniere <joseph@lafreniere.xyz>"
homepage="https://github.com/Kuniwak/vint"
license="MIT"
distfiles="${PYPI_SITE}/v/vim-vint/vim-vint-${version}.tar.gz"
checksum=bf752b23b8d6164cefda8e4426fb0d2e03554424f03944985e8cdc7bec28472a
alternatives="vint:vint:/usr/bin/vint2"
post_install() {
vlicense LICENSE.txt
}
python3-vint_package() {
noarch=yes
depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml"
pycompile_module="vint"
short_desc="${short_desc/Python2/Python3}"
alternatives="vint:vint:/usr/bin/vint3"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE.txt
}
}