Add signing to common
This commit is contained in:
parent
36102f22b4
commit
51b06018c1
|
@ -22,7 +22,12 @@ pkg-info.jq:
|
||||||
echo '.dependencies={}' >> pkg-info.jq
|
echo '.dependencies={}' >> pkg-info.jq
|
||||||
$(foreach dep, ${LANG_DEPS}, echo '.dependencies.$(word 1,$(subst =, ,${dep}))="$(word 2,$(subst =, ,${dep}))"' >> pkg-info.jq)
|
$(foreach dep, ${LANG_DEPS}, echo '.dependencies.$(word 1,$(subst =, ,${dep}))="$(word 2,$(subst =, ,${dep}))"' >> pkg-info.jq)
|
||||||
|
|
||||||
|
%.asc: %
|
||||||
|
gpg --detach-sig --armor --output $@ $<
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(filter-out Makefile, $(wildcard *))
|
rm -rf $(filter-out Makefile, $(wildcard *))
|
||||||
|
|
||||||
|
.PHONY: sign
|
||||||
|
sign: ${LANG_NAME}-${LANG_VERSION}.pkg.tar.gz.asc
|
Loading…
Reference in New Issue