astrobian-keyring/Makefile

15 lines
303 B
Makefile
Raw Normal View History

2022-04-03 00:47:59 +02:00
build:
true
clean:
true
install:
install -d $(DESTDIR)/etc/apt/trusted.gpg.d/
cp $(shell find trusted.gpg.d/ -name '*.gpg' -type f) $(DESTDIR)/etc/apt/trusted.gpg.d/
install -d $(DESTDIR)/usr/share/keyrings/
cp $(DESTDIR)/etc/apt/trusted.gpg.d/* $(DESTDIR)/usr/share/keyrings/
.PHONY: install