File: rules

package info (click to toggle)
opencryptoki 3.8.1%2Bdfsg-3.2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 4,316 kB
  • sloc: ansic: 77,968; perl: 1,513; makefile: 936; yacc: 376; sh: 146; lex: 128
file content (54 lines) | stat: -rwxr-xr-x 1,624 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

SHELL := sh -e
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# Use locks instead of transactional memory in architectures where libitm is not available
ifeq (,$(filter $(DEB_HOST_ARCH), alpha amd64 arm64 i386 x32 ppc64 ppc64el s390x sh4 sparc64))
ENABLE_LOCKS=--enable-locks
endif

%:
	dh ${@}

override_dh_auto_clean:
	dh_auto_clean
	rm -f usr/lib/pkcs11/api/pkcs11

override_dh_auto_configure:
	dh_auto_configure -- --enable-tpmtok --with-systemd=/lib/systemd/system ac_cv_path_CHGRP=true $(ENABLE_LOCKS)

override_dh_auto_install:
	dh_auto_install

	# create links to .so-files in usr/lib
	( cd debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH) && \
	 for FILE in ./opencryptoki/*.so.* ./opencryptoki/stdll/*.so.*; \
	 do \
		ln -s $$FILE ; \
	 done \
	)

	# Remove broken symlinks in /usr/lib/pkcs11/
	cd debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkcs11 && rm -f \
		libopencryptoki.so PKCS11_API.so

	# Removing useless files
	rm -rf debian/tmp/etc/ld.so.conf.d
	rm -rf debian/tmp/etc/init.d
	rm -f debian/tmp/usr/include/Makefile*
	rm -f debian/tmp/usr/include/*/Makefile*
	rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/opencryptoki/*.la \
		debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/opencryptoki/stdll/*.la
	rm -f debian/tmp/lib/systemd/system/tmpfiles.conf

override_dh_install:
	dh_install --fail-missing  --sourcedir=debian/tmp

override_dh_installinit:
	dh_installinit -p opencryptoki --name pkcsslotd

get-orig-source:
	cd $(dir $(firstword $(MAKEFILE_LIST))).. && \
	uscan --force-download --repack --rename --destdir $(CURDIR)