diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2010-12-01 02:44:21 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2010-12-01 02:44:21 (GMT) |
commit | 9c11e9e39b4002a48d5216e30219ea5c975af9d0 (patch) | |
tree | 91266a53524dc07aa67d295996aa445236faf517 /src/cunit.mk | |
parent | 5099f2de1c4e58a8825e4232ae342930659a8ff4 (diff) | |
download | mxe-9c11e9e39b4002a48d5216e30219ea5c975af9d0.zip mxe-9c11e9e39b4002a48d5216e30219ea5c975af9d0.tar.gz mxe-9c11e9e39b4002a48d5216e30219ea5c975af9d0.tar.bz2 |
improved update script of packages: boost cppunit cunit expat freetype glew pcre pdcurses wxwidgets
Diffstat (limited to 'src/cunit.mk')
-rw-r--r-- | src/cunit.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cunit.mk b/src/cunit.mk index dc8ff1c..1b49e0d 100644 --- a/src/cunit.mk +++ b/src/cunit.mk @@ -13,9 +13,9 @@ $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/cunit/CUnit/$($(PKG)_VER $(PKG)_DEPS := gcc define $(PKG)_UPDATE - $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/cunit/files/) | \ - $(SED) -n 's,.*CUnit-\([0-9][^>]*\)-src\.tar.*,\1,p' | \ - tail -1 + wget -q -O- 'http://sourceforge.net/projects/cunit/files/CUnit/' | \ + $(SED) -n 's,.*/\([0-9][^"]*\)/".*,\1,p' | \ + head -1 endef define $(PKG)_BUILD |