diff options
-rwxr-xr-x | build | 2 | ||||
-rw-r--r-- | source.mk | 20 |
2 files changed, 22 insertions, 0 deletions
@@ -1,5 +1,7 @@ #! /usr/bin/make -f +include ../source.mk + nop: @: diff --git a/source.mk b/source.mk new file mode 100644 index 0000000..91e2fd0 --- /dev/null +++ b/source.mk @@ -0,0 +1,20 @@ +upstream_archive = busybox-$(OPK_SOURCE_VERSION_UPSTREAM).tar.bz2 +upstream_url = http://www.busybox.net/downloads/$(upstream_archive) +source_archive = ../busybox-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.bz2 +keys = ACC9965B + +$(source_archive): + wget "$(upstream_url)" + set -e; if gpg --version >/dev/null 2>&1; then \ + wget "$(upstream_url).sign"; \ + [ -e ../keyring.gpg ] || \ + gpg --keyring ../keyring.gpg --no-default-keyring \ + --recv-keys $(keys); \ + gpg --verify --keyring ../keyring.gpg \ + "$(upstream_archive).sign"; \ + sed -n 's/^MD5: //p' "$(upstream_archive).sign" | md5sum -c; \ + sed -n 's/^SHA1: //p' "$(upstream_archive).sign" | sha1sum -c; \ + fi + mv "$(upstream_archive)" "$(source_archive)" + +source: $(source_archive) |