pve-manager/aplinfo/Makefile
Thomas Lamprecht 185a94abee update shipped aplliance info index
and pull it from the Proxmox VE 8 index

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2023-06-08 18:41:56 +02:00

30 lines
738 B
Makefile

DOCDIR=/usr/share/doc/pve-manager/
TRUSTED_KEYS= \
proxmox-release-6.x.pubkey \
proxmox-release-bullseye.pubkey \
proxmox-release-bookworm.gpg \
release@turnkeylinux.com.pubkey
all:
.PHONY: install
install: aplinfo.dat trustedkeys.gpg
install -D -m 0644 aplinfo.dat $(DESTDIR)$(DOCDIR)/aplinfo.dat
install -D -m 0644 trustedkeys.gpg $(DESTDIR)$(DOCDIR)/trustedkeys.gpg
.PHONY: update
update:
rm -f aplinfo.dat
wget http://download.proxmox.com/images/aplinfo-pve-8.dat -O aplinfo.dat.tmp
mv aplinfo.dat.tmp aplinfo.dat
trustedkeys.gpg: $(TRUSTED_KEYS)
sq keyring join --binary -o $@.tmp *.pubkey proxmox-release-bookworm.gpg
mv $@.tmp $@
.PHONY: clean
clean:
rm -rf *~ aplinfo.dat.gz aplinfo.dat.asc trustedkeys.gpg