a267c68cbb
--HG-- extra : convert_revision : 2d0ddde369fa4f4e69a183e9ee7a41beb7cb50be
14 lines
318 B
Bash
14 lines
318 B
Bash
#
|
|
# This helper is for templates installing python modules.
|
|
#
|
|
|
|
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
|
|
}
|