comparison src/pcre.mk @ 2525:4d0f3a9da57e

all packages: use $(WGET) portability variable
author Tony Theodore <tonyt@logyst.com>
date Wed, 09 May 2012 01:16:05 +1000
parents b5321bdec505
children 6522e8f7a7f2
comparison
equal deleted inserted replaced
2524:422cb29ca669 2525:4d0f3a9da57e
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/pcre/pcre/$($(PKG)_VERSION)/$($(PKG)_FILE) 9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/pcre/pcre/$($(PKG)_VERSION)/$($(PKG)_FILE)
10 $(PKG)_URL_2 := ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$($(PKG)_FILE) 10 $(PKG)_URL_2 := ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$($(PKG)_FILE)
11 $(PKG)_DEPS := gcc 11 $(PKG)_DEPS := gcc
12 12
13 define $(PKG)_UPDATE 13 define $(PKG)_UPDATE
14 wget -q -O- 'http://sourceforge.net/projects/pcre/files/pcre/' | \ 14 $(WGET) -q -O- 'http://sourceforge.net/projects/pcre/files/pcre/' | \
15 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ 15 $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \
16 head -1 16 head -1
17 endef 17 endef
18 18
19 define $(PKG)_BUILD 19 define $(PKG)_BUILD