diff options
author | Volker Grabsch <vog@notjusthosting.com> | 2009-02-03 00:59:29 (GMT) |
---|---|---|
committer | Volker Grabsch <vog@notjusthosting.com> | 2009-02-03 00:59:29 (GMT) |
commit | 50634bae5520284ccfd232bf824488e06367428b (patch) | |
tree | 609e4d1d4277b63623a8a823a2d348eabeb31cda /src/mingwrt.mk | |
parent | c7b2a3bf473629e84794e4530aedbe5c7c96a86e (diff) | |
download | mxe-50634bae5520284ccfd232bf824488e06367428b.zip mxe-50634bae5520284ccfd232bf824488e06367428b.tar.gz mxe-50634bae5520284ccfd232bf824488e06367428b.tar.bz2 |
don't install the DLL file of mingwrt, because there is no need for it
Diffstat (limited to 'src/mingwrt.mk')
-rw-r--r-- | src/mingwrt.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mingwrt.mk b/src/mingwrt.mk index de4b059..0bc5309 100644 --- a/src/mingwrt.mk +++ b/src/mingwrt.mk @@ -4,18 +4,19 @@ PKG := mingwrt $(PKG)_VERSION := 3.15.1-mingw32 $(PKG)_SUBDIR := . -$(PKG)_FILE := mingwrt-$($(PKG)_VERSION).tar.gz +$(PKG)_FILE := mingwrt-$($(PKG)_VERSION)-dev.tar.gz $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/mingw/$($(PKG)_FILE) $(PKG)_DEPS := define $(PKG)_UPDATE wget -q -O- 'http://sourceforge.net/project/showfiles.php?group_id=2435&package_id=11598' | \ - $(SED) -n 's,.*mingwrt-\([0-9][^>]*\)-src\.tar.*,\1,p' | \ + grep 'mingwrt-' | \ + $(SED) -n 's,.*mingwrt-\([0-9][^>]*\)-dev\.tar.*,\1,p' | \ head -1 endef define $(PKG)_BUILD install -d '$(PREFIX)/$(TARGET)' cd '$(1)' && \ - cp -rpv bin include lib '$(PREFIX)/$(TARGET)' + cp -rpv include lib '$(PREFIX)/$(TARGET)' endef |