comparison src/xine-lib.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 c4cd2fe180e4
comparison
equal deleted inserted replaced
2524:422cb29ca669 2525:4d0f3a9da57e
8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2 8 $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/xine/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE) 9 $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/xine/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
10 $(PKG)_DEPS := gcc faad2 ffmpeg flac fontconfig freetype graphicsmagick libiconv libmng pthreads sdl speex theora vorbis zlib 10 $(PKG)_DEPS := gcc faad2 ffmpeg flac fontconfig freetype graphicsmagick libiconv libmng pthreads sdl speex theora vorbis zlib
11 11
12 define $(PKG)_UPDATE 12 define $(PKG)_UPDATE
13 wget -q -O- 'http://hg.debian.org/hg/xine-lib/xine-lib/tags' | \ 13 $(WGET) -q -O- 'http://hg.debian.org/hg/xine-lib/xine-lib/tags' | \
14 $(SED) -n 's,>,\n,gp' | \ 14 $(SED) -n 's,>,\n,gp' | \
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