astrobian-keyring/Makefile

15 lines
303 B
Makefile

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