File: rules

package info (click to toggle)
nukeimage 0.3-8
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 112 kB
  • ctags: 9
  • sloc: sh: 60; makefile: 36
file content (48 lines) | stat: -rwxr-xr-x 840 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
#! /usr/bin/make -f

export DH_OPTIONS

dtmp = $(CURDIR)/debian/mozilla-nukeimage
extdir = $(dtmp)/usr/share/mozilla-extensions/nukeimage
uuid = C93FC8A2-2FC7-4DD8-A89D-792159A32799

src = content locale

build:

clean:
	dh_testdir
	dh_testroot
	dh_clean

install:
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	cp -a $(src) $(extdir)/chrome/nukeimage/
	install -m 644 debian/chrome.d debian/chrome.manifest \
		debian/extensions.d debian/install.rdf \
		$(extdir)
	install -m 644 debian/Uninstall $(extdir)/uninstall

binary-indep: DH_OPTIONS=-i
binary-indep: install
	dh_testdir
	dh_testroot
	dh_installchangelogs
	dh_installdocs
	dh_link
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch:

binary: binary-indep binary-arch

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