3c7cb7e77b96d4b4cee813ea8e6ae3ade877ab90
2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 DOWNLOAD_RDEP
:=$(STAMP_PREPARED
)
10 # Try to guess the download method from the URL
14 $(if
$(filter @GNU
/% @KERNEL
/% @SF
/% ftp
://% http
://%,$(1)),default
, \
15 $(if
$(filter git
://%,$(1)),git
, \
16 $(if
$(filter svn
://%,$(1)),svn
, \
25 # code for creating tarballs from svn/git checkouts - useful for mirror support
26 dl_pack
/bz2
=$(TAR
) cfj
$(1) $(2)
27 dl_pack
/gz
=$(TAR
) cfz
$(1) $(2)
28 dl_pack
/unknown
=echo
"ERROR: Unknown pack format for file $(1)"; false
30 $(if
$(dl_pack
/$(call ext
,$(1))),$(dl_pack
/$(call ext
,$(1))),$(dl_pack
/unknown
))
33 define DownloadMethod
/unknown
34 @echo
"ERROR: No download method available"; false
37 define DownloadMethod
/default
38 $(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(FILE)" "$(MD5SUM)" $(URL
)
42 @
$(if
$(CONFIG_LOCALMIRROR
),$(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(FILE)" "x" ||
) \
44 $(if
$(CONFIG_LOCALMIRROR
),, ||
$(SCRIPT_DIR
)/download.pl
"$(DL_DIR)" "$(FILE)" "x")
47 define DownloadMethod
/svn
49 echo
"Checking out files from the svn repository..."; \
50 mkdir
-p
$(TMP_DIR
)/dl
&& \
53 [ \
! -d
$(SUBDIR
) ] && \
54 svn
co -r
$(VERSION
) $(URL
) $(SUBDIR
) && \
55 find
$(SUBDIR
) -name .svn | xargs
rm -rf
&& \
56 echo
"Packing checkout..." && \
57 $(call dl_pack
,$(TMP_DIR
)/dl
/$(FILE
),$(SUBDIR
)) && \
58 mv
$(TMP_DIR
)/dl
/$(FILE
) $(DL_DIR
)/; \
62 define DownloadMethod
/git
64 echo
"Checking out files from the git repository..."; \
65 mkdir
-p
$(TMP_DIR
)/dl
&& \
68 [ \
! -d
$(SUBDIR
) ] && \
69 git-clone
$(URL
) $(SUBDIR
) && \
70 (cd
$(SUBDIR
) && git-checkout
$(VERSION
)) && \
71 echo
"Packing checkout..." && \
72 rm -rf
$(SUBDIR
)/.git
&& \
73 $(call dl_pack
,$(TMP_DIR
)/dl
/$(FILE
),$(SUBDIR
)) && \
74 mv
$(TMP_DIR
)/dl
/$(FILE
) $(DL_DIR
)/; \
78 Validate
/svn
=VERSION SUBDIR
79 Validate
/git
=VERSION SUBDIR
81 define Download
/Defaults
91 $(eval
$(Download
/Defaults
))
92 $(eval
$(Download
/$(1)))
93 $(foreach FIELD
,URL FILE
$(Validate
/$(call dl_method
,$(URL
),$(PROTO
))),
95 $$(error Download
/$(1) is missing the
$(FIELD
) field.
)
99 $(if
$(DOWNLOAD_RDEP
),$(DOWNLOAD_RDEP
): $(DL_DIR
)/$(FILE
))
100 download
: $(DL_DIR
)/$(FILE
)
104 $(if
$(DownloadMethod
/$(call dl_method
,$(URL
),$(PROTO
))),$(DownloadMethod
/$(call dl_method
,$(URL
),$(PROTO
))),$(DownloadMethod
/unknown
))
This page took 0.043089 seconds and 3 git commands to generate.