void-packages/xbps-src/helpers/python-module.sh

20 lines
388 B
Bash
Raw Normal View History

#
# This helper is for templates installing python modules.
#
do_build()
{
python setup.py build ${make_build_args} || return 1
}
do_install()
{
if [ -z "$make_install_args" ]; then
make_install_args="--prefix=/usr --root=$DESTDIR"
fi
cd ${wrksrc} || return 1
sed -i 's|man/man1|share/man/man1|g' setup.py || return 1
python setup.py install ${make_install_args} || return 1
}