mirror of
https://github.com/naruxde/revpicommander.git
synced 2025-11-09 00:53:53 +01:00
By renaming the entry point, which had the same name as the module, both can now be installed in the same directory. The entry point can then be created in /usr/bin as a link with the original name 'revpicommander'. Signed-off-by: Sven Sager <akira@narux.de>
10 lines
303 B
Makefile
Executable File
10 lines
303 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export PYBUILD_NAME=revpicommander
|
|
|
|
# Install this module as an application an not into the python standard library path
|
|
export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/revpicommander/ --install-scripts=/usr/share/revpicommander/
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|