summaryrefslogtreecommitdiffstats
path: root/source.mk
blob: 5718becc837188aee220a75758155eb3bc86a64e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)