How to build debian package with CPack to execute setup.py?

后端 未结 2 1587
南笙
南笙 2020-12-24 09:33

Until now, my project had only .cpp files that were compiled into different binaries and I managed to configure CPack to build a proper

2条回答
  •  时光说笑
    2020-12-24 10:27

    A setup.py file is the equivalent of the configure && make && make install dance for a standard unix source distribution and as such is inappropriate to run as a part of a distributions package install process. See this discussion of the different ways to include Python modules in a .deb package.

提交回复
热议问题