diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-12-02 19:31:45 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-12-02 19:31:45 (GMT) |
commit | 77f47c13ca7d6e60d93436d853608ac225e5fa64 (patch) | |
tree | f8b9543065dd935bd0fada5dd96f0ca40f3164a2 /src/tinyxml.mk | |
parent | e9720327c61aceb39e591a2341b3a7d270f11329 (diff) | |
download | mxe-77f47c13ca7d6e60d93436d853608ac225e5fa64.zip mxe-77f47c13ca7d6e60d93436d853608ac225e5fa64.tar.gz mxe-77f47c13ca7d6e60d93436d853608ac225e5fa64.tar.bz2 |
improved update script of all remaining SourceForge packages
Diffstat (limited to 'src/tinyxml.mk')
-rw-r--r-- | src/tinyxml.mk | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/tinyxml.mk b/src/tinyxml.mk index 93ff40c..f690a6e 100644 --- a/src/tinyxml.mk +++ b/src/tinyxml.mk @@ -13,10 +13,9 @@ $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/$(PKG)/$($(PKG)_V $(PKG)_DEPS := gcc define $(PKG)_UPDATE - $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/tinyxml/files/tinyxml/) | \ - $(SED) -n 's,.*tinyxml_\([0-9][^>]*\)\.tar.*,\1,p' | \ - $(SED) 's,_,.,g' | \ - tail -1 + wget -q -O- 'http://sourceforge.net/projects/tinyxml/files/tinyxml/' | \ + $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ + head -1 endef define $(PKG)_BUILD |