Merge origin/master into mdv-gpl3-py26
[openerp-server.git] / rpminstall_sh.txt
blobbb7bb3fc10c2eca112c603e00e7b03e5f070deed
2 # This file is used by 'python setup.py bdist_rpm'
3 # You should not execute/call this file yourself.
5 # This script is used as the 'install' part of the RPM .spec file.
7 # Need to overwrite the install-part of the RPM to append the
8 # compression-suffix onto the filenames for the man-pages.
10 python -c "import compileall, os; compileall.compile_dir(os.path.join(os.environ['PWD'], 'doc'), force=True)"
11 python -O -c "import compileall, os; compileall.compile_dir(os.path.join(os.environ['PWD'], 'doc'), force=True)"
12 python setup.py install --optimize 1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
14 SUFFIX=gz
15 sed "s!\(/share/man/.*\)!\1.$SUFFIX!" -i INSTALLED_FILES