python3-grako: fix permissions

chmod +r files in Python3 site-packages to make them world/other
readable.
This commit is contained in:
Peter Bui 2020-09-27 10:24:07 -04:00 committed by Érico Nogueira Rolim
parent 8b63045535
commit 5bdca0f424

View file

@ -1,7 +1,7 @@
# Template file for 'python3-grako'
pkgname=python3-grako
version=3.99.9
revision=5
revision=6
wrksrc="grako-$version"
build_style=python3-module
hostmakedepends="python3-setuptools python3-Cython"
@ -19,5 +19,7 @@ pre_build() {
sed -i '/setup_requires=/d' setup.py
}
post_install() {
# TODO: Find out why we need to change these permissions manually
chmod -R +r "${DESTDIR}/${py3_sitelib}"
vlicense LICENSE.txt
}