diff src/msys-libcrypt.mk @ 3960:bd51e2f81020

mingw: add perl msys module for devel tools * index.html: add msys-perl, msys-libcrypt * src/msys-perl.mk: new file * src/src-msys-perl.mk: new file * src/msys-libcrypt.mk: new file * src/src-msys-libcrypt.mk: new file * Makefile.in: add msys-perl, msys-libcrypt to installer in cross mingw * dist-files.mk: add libcrypy and perl files
author John Donoghue <john.donoghue@ieee.org>
date Mon, 08 Jun 2015 19:21:00 -0400
parents
children 7d1e45c2f175
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/msys-libcrypt.mk	Mon Jun 08 19:21:00 2015 -0400
@@ -0,0 +1,25 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG             := msys-libcrypt
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 1.1_1-3
+$(PKG)_CHECKSUM := db7933c59e3aa88f38d14faeaa81d79d460d6d3d
+$(PKG)_REMOTE_SUBDIR := crypt/crypt-$($(PKG)_VERSION)
+$(PKG)_SUBDIR   := 
+$(PKG)_FILE     := libcrypt-$($(PKG)_VERSION)-msys-1.0.13-dll-0.tar.lzma
+$(PKG)_URL      := $(MSYS_EXTENSION_URL)/$($(PKG)_REMOTE_SUBDIR)/$($(PKG)_FILE)/download
+$(PKG)_DEPS     := 
+
+define $(PKG)_UPDATE
+    $(WGET) -q -O- '$(MSYS_EXTENSION_URL)/crypt' | \
+    $(SED) -n 's,.*title="libcrypt-\([0-9][^"]*\)".*,\1,p' | \
+    head -1
+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