File: rules

package info (click to toggle)
jless 332iso240-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,228 kB
  • ctags: 1,482
  • sloc: ansic: 16,120; sh: 190; makefile: 142; awk: 7
file content (62 lines) | stat: -rwxr-xr-x 1,375 bytes parent folder | download
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/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.

package=jless

build:
	dh_testdir
	./configure --prefix=/usr
	make CFLAGS="-O2 -g -Wall -DEDIT_PGM=\\\"/usr/bin/editor\\\""
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	-rm -f build-stamp
	-make distclean
	-rm -f `find . -name "*~"`
	-rm -rf debian/tmp debian/files* core debian/substvars

binary-indep:	build

binary-arch:	build
	dh_testdir
	dh_testroot

	-rm -rf debian/tmp

	dh_installdirs

	make install prefix=`pwd`/debian/tmp/usr

	# LESSOPEN
	install -m 755 debian/lessopen `pwd`/debian/tmp/usr/bin/lesspipe
	ln -s lesspipe `pwd`/debian/tmp/usr/bin/lessfile

	ln debian/tmp/usr/bin/less debian/tmp/usr/bin/$(package)
	ln -s less.1 debian/tmp/usr/man/man1/$(package).1

# Must have debmake installed for this to work. Otherwise please copy
# /usr/bin/debstd into the debian directory and change debstd to debian/debstd

	dh_installdocs
#	dh_installmanpages
	dh_undocumented lessecho.1 lessfile.1 lesspipe.1
	dh_installchangelogs
	dh_strip
	dh_compress
	dh_fixperms
	dh_suidregister
	dh_installdeb
	dh_gencontrol
#	dh_du
	dh_md5sums
	dh_builddeb

source diff:
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

binary:		binary-indep binary-arch

.PHONY: build clean binary binary-arch binary-indep