File: rules

package info (click to toggle)
lice5 1%3A5.3.0-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,720 kB
  • ctags: 18
  • sloc: ansic: 211; lisp: 64; makefile: 41; sh: 6
file content (61 lines) | stat: -rwxr-xr-x 1,153 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
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
#!/usr/bin/make -f

PACKAGE = epic5-script-lice
DEST = $(CURDIR)/debian/$(PACKAGE)

build-arch:
build-indep:
build:
# Nothing to do

clean:
	dh_testdir
	dh_testroot
	rm -f install-stamp
	dh_clean
	

install: install-stamp
install-stamp: build
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs

	# Install script
	cp -dR $(CURDIR)/lice $(DEST)/usr/share/epic5/lice5/
	cp -dR $(CURDIR)/help $(DEST)/usr/share/epic5/lice5/
	cp -dR $(CURDIR)/logos $(DEST)/usr/share/epic5/lice5/
	cp -dR $(CURDIR)/pics $(DEST)/usr/share/epic5/lice5/
	cp -dR $(CURDIR)/themes $(DEST)/usr/share/epic5/lice5/
	cp $(CURDIR)/lice.irc $(DEST)/usr/share/epic5/lice5/

	find $(DEST)/usr/share/epic5/ -type f -exec chmod 644 {} +

	# Disable update functionality
	touch $(DEST)/usr/share/epic5/lice5/disable_update

	touch install-stamp


binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_installexamples *.reasons
	dh_installchangelogs 
	dh_link
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb


binary-arch: build install
# Nothing to do

binary: binary-indep binary-arch

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