summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0d8f32a4d9fdafb00ee57fe8a814e7e08ce0661d (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
# Generated using pip2pkgbuild - https://github.com/wenLiangcan/pip2pkgbuild
# Maintainer: MayorBender <7480812+kingy9000@users.noreply.github.com>
# Contributor: Peter Lamby <peterlamby@web.de>

pkgname=style50
_module='style50' # PyPi specific
pkgver=2.6.4
pkgrel=1
pkgdesc="This is style50, with which code can be checked against the CS50 style guide"
arch=('any')
url="https://github.com/cs50/style50"
license=('GPL')
depends=('python')
makedepends=('python-setuptools')
optdepends=('astyle: To style check C, C++, or Java code')
source=(
	"https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz"
)
sha256sums=(
	'8bb68f0be72660411976ab1742c759845f981eefe0f21edb1533882a1833c8a0'
)

build() {
	cd "${srcdir}/${_module}-${pkgver}"
	python setup.py build
}

package() {
	depends+=()
	cd "${srcdir}/${_module}-${pkgver}"
	python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}