summaryrefslogtreecommitdiffstats
path: root/source.mk
diff options
context:
space:
mode:
Diffstat (limited to 'source.mk')
-rw-r--r--source.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/source.mk b/source.mk
new file mode 100644
index 0000000..5718bec
--- /dev/null
+++ b/source.mk
@@ -0,0 +1,13 @@
+# Reference only -- requires git, not yet in ProteanOS
+
+upstream_commit = $$(printf '%s\n' '$(OPK_SOURCE_VERSION_UPSTREAM)' | \
+ sed 's/^.*~git........\.\([0-9a-f]*\).*$$/\1/')
+upstream_git_uri = https://git.openwrt.org/project/$(OPK_SOURCE).git
+source_archive = ../$(OPK_SOURCE)-$(OPK_SOURCE_VERSION_UPSTREAM).orig.tar.xz
+
+$(source_archive):
+ git clone $(upstream_git_uri) $(OPK_SOURCE)/
+ (cd $(OPK_SOURCE)/ && git archive --format=tar --prefix=$(OPK_SOURCE)/ \
+ "$(upstream_commit)") | xz >$@
+
+source: $(source_archive)