1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/usr/bin/make -f
export PYBUILD_INSTALL_ARGS_python3=--install-lib=/usr/share/bleachbit
%:
dh $@ --with python3 --buildsystem=pybuild
override_dh_auto_clean:
find po -name "*.mo" -delete
dh_auto_clean
override_dh_auto_install:
dh_auto_install
make -C po install DESTDIR=$(CURDIR)/debian/bleachbit
override_dh_install:
# Do not install Windows-specific cleaners
dh_install $(addprefix -X,$(notdir $(shell grep -l os=.windows. $(shell grep -L os=.linux. cleaners/*.xml) | xargs ls)))
# Automatically generate .desktop file to invoke BleachBit as superuser
sed -e "s/Name=BleachBit/Name=BleachBit \(as root\)/; \
s/TryExec=bleachbit/TryExec=pkexec/; \
s/Exec=bleachbit/Exec=pkexec bleachbit/" \
org.bleachbit.BleachBit.desktop > debian/bleachbit/usr/share/applications/bleachbit-root.desktop
override_dh_fixperms:
dh_fixperms
chmod +x $(CURDIR)/debian/bleachbit/usr/share/bleachbit/bleachbit.py
|