This file is indexed.

/usr/share/doc/dpkg-sig/examples/sample/debian/rules is in dpkg-sig 0.13.1+nmu4.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 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
#!/usr/bin/make -f

build:

clean:
	dh_testdir
	dh_testroot
	dh_clean

binary-arch:

binary-indep:
	dh_testdir
	dh_testroot
	dh_clean
	mkdir -p debian/tmp/tmp
	cp test debian/tmp/tmp

	dh_compress
	dh_gencontrol
	dh_md5sums
	dh_fixperms
	dh_builddeb

binary: binary-indep