mirror of
https://git.proxmox.com/git/proxmox-archive-keyring
synced 2025-08-03 23:38:59 +00:00

taking over from product-specific meta packages, which can now depend on proxmox-archive-keyring and drop their copies of the keys. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
29 lines
386 B
Makefile
Executable File
29 lines
386 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
install:
|
|
dh_install
|
|
dh_installdocs
|
|
dh_lintian
|
|
dh_installchangelogs
|
|
dh_installman
|
|
dh_strip_nondeterminism
|
|
dh_compress
|
|
dh_fixperms
|
|
|
|
binary: install
|
|
dh_strip
|
|
dh_makeshlibs
|
|
dh_shlibdeps
|
|
dh_installdeb
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
.PHONY: build clean
|
|
build clean:
|