File: rules

package info (click to toggle)
wmaker-data 0.9~4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 736 kB
  • sloc: makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f
# Made with the aid of debmake, by Christoph Lameter,
# based on the sample debian/rules file for GNU hello by Ian Jackson.

DESTDIR ?= $(CURDIR)/debian/tmp
ICONDIR  = $(DESTDIR)/usr/share/icons

%:
	dh $@

override_dh_auto_install:
	install -d -m 0755 $(ICONDIR)
	find icons* -type f -exec install -m 0644 '{}' $(ICONDIR) \;
	cd $(ICONDIR) ; for f in * ; do mv $$f wmaker-$$f ; done