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 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 Validate
/svn
=VERSION SUBDIR
63 #Validate/git=VERSION SUBDIR
65 define Download
/Defaults
75 $(eval
$(Download
/Defaults
))
76 $(eval
$(Download
/$(1)))
77 $(foreach FIELD
,URL FILE
$(Validate
/$(call dl_method
,$(URL
),$(PROTO
))),
79 $$(error Download
/$(1) is missing the
$(FIELD
) field.
)
83 $(if
$(DOWNLOAD_RDEP
),$(DOWNLOAD_RDEP
): $(DL_DIR
)/$(FILE
))
84 download
: $(DL_DIR
)/$(FILE
)
88 $(if
$(DownloadMethod
/$(call dl_method
,$(URL
),$(PROTO
))),$(DownloadMethod
/$(call dl_method
,$(URL
),$(PROTO
))),$(DownloadMethod
/unknown
))
This page took 0.062045 seconds and 5 git commands to generate.