File: rules

package info (click to toggle)
fusion-icon 0.2.4-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 296 kB
  • sloc: python: 731; makefile: 21; xml: 14
file content (18 lines) | stat: -rwxr-xr-x 568 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f
# -*- makefile -*-

%:
	dh $@

override_dh_install:
# remove unneeded eeg-info files
	find $(CURDIR)/debian -type f -name '*.egg-info' | xargs rm -f
	dh_install

override_dh_clean:
	find $(CURDIR) -type f -name '.installed_files' | xargs rm -f
#	find $(CURDIR) -type f -name 'fusion-icon.appdata.xml' | xargs rm -f
#	find $(CURDIR) -type f -name 'fusion-icon.desktop' | xargs rm -f
	find $(CURDIR)/FusionIcon/interface_gtk -type f -name 'main.py' | xargs rm -f
	find $(CURDIR)/FusionIcon/interface_qt -type f -name 'main.py' | xargs rm -f
	dh_clean