File: rules

package info (click to toggle)
libdancer-perl 1.3132%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,392 kB
  • ctags: 634
  • sloc: perl: 7,173; xml: 1,851; sh: 51; makefile: 29; sql: 5
file content (34 lines) | stat: -rwxr-xr-x 888 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
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/make -f

PACKAGE = $(shell dh_listpackages)
TMP     = $(CURDIR)/debian/$(PACKAGE)

%:
	dh $@

override_dh_auto_install:
	dh_auto_install
	# remove empty manpages
	for M in \
		Dancer::App.3pm \
		Dancer::Continuation.3pm \
		Dancer::Continuation::Halted.3pm \
		Dancer::Continuation::Route.3pm \
		Dancer::Continuation::Route::ErrorSent.3pm \
		Dancer::Continuation::Route::FileSent.3pm \
		Dancer::Continuation::Route::Forwarded.3pm \
		Dancer::Continuation::Route::Passed.3pm \
		Dancer::Continuation::Route::Templated.3pm \
		Dancer::Factory::Hook.3pm \
		Dancer::GetOpt.3pm \
		Dancer::Handler.3pm \
		Dancer::Handler::Standalone.3pm \
		Dancer::Renderer.3pm \
		Dancer::Route.3pm \
		Dancer::Route::Registry.3pm \
		Dancer::Serializer::Abstract.3pm \
		Dancer::Serializer::Dumper.3pm \
		Dancer::SharedData.3pm \
	; do \
		$(RM) -v $(TMP)/usr/share/man/man3/$$M \
	; done