summaryrefslogtreecommitdiff
path: root/newmoon/debian/rules
blob: 3d4ed6fe1c7044b177ce3c64ac5893fdc09e2e9c (plain)
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
63
64
65
66
#!/usr/bin/make -f

# Some Debian build tools clear out some variables
export SHELL=/bin/bash

# stackrpms,2 just do not need lsb_release
#distrel := $(shell lsb_release --codename --short)

# Reduce memory usage of the linker at the expense of processing time
# This should help on lower-end architectures like arm and mips, which
# spend an immense amount of time swapping.
LDFLAGS += -Wl,--reduce-memory-overheads
LDFLAGS += -Wl,--no-keep-memory

# Add execution time and memory usage stats in the logs
LDFLAGS += -Wl,--stats

ifneq (,$(filter $(DEB_HOST_ARCH), armhf))
	export DEB_CFLAGS_MAINT_APPEND = -mfpu=neon -funsafe-math-optimizations
	export DEB_CXXFLAGS_MAINT_APPEND = -mfpu=neon -funsafe-math-optimizations
endif

%:
	dh $@

override_dh_auto_clean:
	dh_auto_clean
	find . -name '*.pyc' -delete
	rm -f mozconfig
	#stackrpms,5
	test -d palemoon/branding/unofficial.unbuilt && { \
		rm -rf palemoon/branding/unofficial palemoon/branding/*.blue* ; \
		mv palemoon/branding/unofficial.unbuilt palemoon/branding/unofficial ; \
	} || :

override_dh_autoreconf:

override_dh_auto_configure:
	cp debian/mozconfig mozconfig
	#stackrpms,4
	! test -d palemoon/branding/unofficial.unbuilt && { \
		cp -pr palemoon/branding/unofficial palemoon/branding/unofficial.unbuilt && \
		tar -C palemoon/branding -zxf debian/bluemoon-icons.tgz ; } || :

override_dh_auto_build:
	# building the stuff
	make -f client.mk build

override_dh_auto_install:
	make -f client.mk DESTDIR=$$(pwd)/debian/newmoon prefix=/usr \
        installdir=/usr/lib/newmoon \
        sdkdir=/usr/lib/newmoon-devel install
	rm -rf $$(pwd)/debian/newmoon/usr/share/idl
	rm -rf $$(pwd)/debian/newmoon/usr/lib/newmoon-devel
	rm -rf $$(pwd)/debian/newmoon/usr/include
# remove vestigial duplicate file
	rm -rf $$(pwd)/debian/newmoon/usr/lib/newmoon/palemoon-bin
	#stackrpms,2
	mv $$(pwd)/debian/newmoon/usr/lib/newmoon/palemoon $$(pwd)/debian/newmoon/usr/lib/newmoon/newmoon
	rm -rf $$(pwd)/debian/newmoon/usr/bin/palemoon

override_dh_shlibdeps:
	dh_shlibdeps -l /usr/lib/newmoon

override_dh_strip_nondeterminism:
	dh_strip_nondeterminism -Xdebian/newmoon/usr/lib/newmoon/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi
bgstack15