changeset 3260:16321a166cc4

add dos2unix and wget.
author Markus Bergholz <markuman+again@gmail.com>
date Sat, 12 Oct 2013 16:45:31 +0200
parents 33ab5eb4fed6
children a55be3b0022f
files Makefile.in index.html src/msys-dos2unix.mk src/msys-wget.mk
diffstat 4 files changed, 57 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.in	Fri Oct 11 23:17:58 2013 -0400
+++ b/Makefile.in	Sat Oct 12 16:45:31 2013 +0200
@@ -274,8 +274,7 @@
     MSYS_EXTENSION_VER := 1.0.13
     MSYS_BASE_DIR := $(TOP_DIR)/msys-base
     MSYS_EXTENSION_DIR := $(TOP_DIR)/msys-extension
-    MSYS_BASE_PACKAGES := $(addprefix msys-,bash coreutils diffutils file findutils gawk grep gzip less libiconv libintl libmagic make msys-core regex sed tar termcap)
-    MSYS_EXTENTION_PACKAGES := $(addprefix msys-, unzip)
+    MSYS_BASE_PACKAGES := $(addprefix msys-,bash coreutils diffutils dos2unix file findutils gawk grep gzip less libiconv libintl libmagic make msys-core regex sed tar termcap unzip wget)
 
     NOTEPAD_BASE_DIR := $(TOP_DIR)/notepad++
   endif
--- a/index.html	Fri Oct 11 23:17:58 2013 -0400
+++ b/index.html	Sat Oct 12 16:45:31 2013 +0200
@@ -1776,6 +1776,11 @@
         <td id="msys-diffutils-version">2.8.7.20071206cvs-3</td>
         <td id="msys-diffutils-website"><a href="http://www.mingw.org/">MinGW diffutils</a></td>
     </tr>
+    <tr>        
+	<td id="msys-dos2unix-package">msys-dos2unix</td>
+        <td id="msys-dos2unix-version">6.0.3-1</td>
+        <td id="msys-dos2unix-website"><a href="http://www.mingw.org/">MinGW dos2unix</a></td>
+    </tr>
     <tr>
         <td id="msys-file-package">msys-file</td>
         <td id="msys-file-version">5.04-1</td>
@@ -1856,6 +1861,11 @@
         <td id="msys-termcap-version">0.20050421_1-2</td>
         <td id="msys-termcap-website"><a href="http://www.mingw.org/">MinGW termcap</a></td>
     </tr>
+    <tr>        
+	<td id="msys-wget-package">msys-wget</td>
+	<td id="msys-wget-version">1.12-1</td>        
+	<td id="msys-wget-website"><a href="http://www.mingw.org/">MinGW wget</a></td>
+    </tr>
     <tr>
         <td id="muparser-package">muparser</td>
         <td id="muparser-version">2.2.2</td>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/msys-dos2unix.mk	Sat Oct 12 16:45:31 2013 +0200
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := msys-dos2unix
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := bab553c740877d02311bfc5d0be3acadbcc375d0
+$(PKG)_REMOTE_SUBDIR := dos2unix/dos2unix-$($(PKG)_VERSION)
+$(PKG)_SUBDIR   := 
+$(PKG)_FILE     := dos2unix-$($(PKG)_VERSION)-msys-1.0.17-bin.tar.lzma
+$(PKG)_URL      := $(MSYS_EXTENSION_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download
+$(PKG)_DEPS     := 
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+define $(PKG)_BUILD
+    mkdir -p '$(MSYS_EXTENSION_DIR)'
+    cd '$(1)' && tar cf - . | ( cd '$(MSYS_EXTENSION_DIR)'; tar xpf - )
+    mkdir -p '$(MSYS_INFO_DIR)'
+    cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list
+endef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/msys-wget.mk	Sat Oct 12 16:45:31 2013 +0200
@@ -0,0 +1,23 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := msys-wget
+$(PKG)_IGNORE   :=
+$(PKG)_CHECKSUM := b13415e735484d82e81bc648fed52a83323ff993
+$(PKG)_REMOTE_SUBDIR := wget/wget-$($(PKG)_VERSION)
+$(PKG)_SUBDIR   := 
+$(PKG)_FILE     := wget-$($(PKG)_VERSION)-msys-1.0.13-bin.tar.lzma
+$(PKG)_URL      := $(MSYS_EXTENSION_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download
+$(PKG)_DEPS     := 
+
+define $(PKG)_UPDATE
+    echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
+    echo $($(PKG)_VERSION)
+endef
+
+define $(PKG)_BUILD
+    mkdir -p '$(MSYS_EXTENSION_DIR)'
+    cd '$(1)' && tar cf - . | ( cd '$(MSYS_EXTENSION_DIR)'; tar xpf - )
+    mkdir -p '$(MSYS_INFO_DIR)'
+    cd '$(1)' && find . > '$(MSYS_INFO_DIR)'/$(PKG).list
+endef