File: rules

package info (click to toggle)
cube2font 1.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 260 kB
  • sloc: makefile: 658; ansic: 517
file content (54 lines) | stat: -rwxr-xr-x 1,475 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
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

%:
	dh $@ --sourcedirectory=src

override_dh_auto_clean:

override_dh_auto_build:
	dh_auto_build -- \
		CXXFLAGS="$(CXXFLAGS) $(CPPFLAGS) -ffast-math" \
		LDFLAGS="$(LDFLAGS) -Wl,--as-needed" \
		appnamefull="" \
		appversion="" \
		weapon-names="" \
		cube2font

override_dh_strip:
	dh_strip --dbgsym-migration='cube2font-dbg (<< 1.5.1-1~)'

override_dh_auto_install:
	make -C src/ system-install-cube2font DESTDIR=$(CURDIR)/debian/cube2font \
		appnamefull="" \
		appversion="" \
		weapon-names="" \
		prefix=/usr

DIR=cube2font-$(DEB_VERSION_UPSTREAM).orig
get-orig-source:
	uscan --noconf --rename --force-download --download-current-version --destdir=.
	rm -rf $(DIR)
	tar -xf cube2font_$(DEB_VERSION_UPSTREAM).orig.tar.gz
	rm -f cube2font_$(DEB_VERSION_UPSTREAM).orig.tar.gz
	mv base-$(DEB_VERSION_UPSTREAM) $(DIR)
	find $(DIR) -mindepth 1 -not -name src \
				-not -name shared \
				-not -name doc \
				-not -name man \
				-not -name cube2font.1 \
				-not -wholename $(DIR)/src/Makefile \
				-not -name system-install.mk \
				-not -name dist.mk \
				-not -name wiki.mk \
				-not -wholename $(DIR)/doc/license.txt \
				-not -name cube2font.c \
				-not -name redeclipse.cbp \
				-delete
	XZ="-6" tar --create --xz --owner root --group root --mode a+rX \
		-f cube2font_$(DEB_VERSION_UPSTREAM).orig.tar.xz $(DIR)
	rm -rf $(DIR)