I'm attaching texlive_arch.patch and texlive_install.patch. The first takes account of the fact that upstream TeX Live now supports 64-bit Cygwin. The second avoids installing files that are intended for TeX Live on native Windows.

Ken
--- texlive.cygclass.orig       2014-03-09 09:20:11.000000000 -0400
+++ texlive.cygclass    2014-03-25 15:50:23.401986500 -0400
@@ -95,7 +95,12 @@
 HOMEPAGE="http://www.tug.org/texlive/";
 #****
 
-TEXLIVE_ARCH="i386-cygwin"
+case ${ARCH} in
+i686)
+       TEXLIVE_ARCH="i386-cygwin" ;;
+x86_64)
+       TEXLIVE_ARCH="x86_64-cygwin" ;;
+esac
 
 #****o* texlive.cygclass/SRC_URI (texlive)
 #  DESCRIPTION
--- texlive.cygclass.orig       2014-03-09 09:20:11.000000000 -0400
+++ texlive.cygclass    2014-05-30 14:51:53.794649600 -0400
@@ -161,6 +161,9 @@
                        *.exe|*.mem)
                                # compiled from source in the 'texlive' package
                                continue ;;
+                       *.dll|*.bat)
+                               # not needed
+                               continue ;;
                        bin/${TEXLIVE_ARCH}/*)
                                if [ ! -L ${f} ]
                                then

Reply via email to