summaryrefslogtreecommitdiff
path: root/debian/rules
blob: cd66ed7e2548ed1b8317c312992582415b0e45ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# for cross-build aware CC and CC_FOR_BUILD
include /usr/share/dpkg/buildtools.mk

%:
	dh $@

execute_after_dh_auto_build:
	# make sure that d/copyright is up-to-date
	python3 debian/gencopyright.py | cmp - debian/copyright

execute_after_dh_auto_install:
	mkdir -p debian/tmp/usr/bin debian/tmp/usr/share/ldraw
	cp -r LDCfgalt.ldr LDConfig.ldr LDConfig_TLG.ldr parts models p debian/tmp/usr/share/ldraw/

execute_after_dh_auto_clean:
	rm -f parts.lst
	[ -e debian/copyright ] || python3 debian/gencopyright.py > debian/copyright