18 lines
451 B
Makefile
Executable File
18 lines
451 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export PYBUILD_NAME=portprotonqt
|
|
export PYBUILD_SYSTEM=pyproject
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_build:
|
|
dh_auto_build --buildsystem=pybuild
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install --buildsystem=pybuild
|
|
install -d debian/portprotonqt/usr/share
|
|
install -d debian/portprotonqt/usr/lib
|
|
cp -r build-aux/share/* debian/portprotonqt/usr/share/
|
|
cp -r build-aux/lib/* debian/portprotonqt/usr/lib/
|