File: rules

package info (click to toggle)
cdw 0.8.1-2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 4,368 kB
  • sloc: ansic: 34,660; sh: 1,580; makefile: 232
file content (23 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

PKGDIR=$(CURDIR)/debian/cdw

override_dh_auto_install:
	dh_auto_install
	install -d -m0755 $(PKGDIR)/usr/share/cdw/pixmaps/
	install -m0644 $(CURDIR)/debian/cdw.xpm \
		$(PKGDIR)/usr/share/cdw/pixmaps/cdw.xpm

%:
	dh $@

.PHONY: override_dh_auto_install