summaryrefslogtreecommitdiff
path: root/update-luahbtex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-04-03 09:11:28 +0900
committerNorbert Preining <norbert@preining.info>2021-04-03 09:11:57 +0900
commit9dce0a9e3ffee302c3a84cbef68d822f331c6fa0 (patch)
tree17fd0944b1d1725764c24c573ecf7681b5a57a0d /update-luahbtex
parent3cc9d6f473501e915def164cbbbccd1a2535dbe5 (diff)
drop harftex
Diffstat (limited to 'update-luahbtex')
-rw-r--r--update-luahbtex41
1 files changed, 0 insertions, 41 deletions
diff --git a/update-luahbtex b/update-luahbtex
deleted file mode 100644
index 5971d958..00000000
--- a/update-luahbtex
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-
-server=http://dl.contextgarden.net/build/luatex/
-
-archs="
-amd64-freebsd
-armhf-linux
-i386-darwin
-i386-freebsd
-i386-linux
-i386-solaris
-sparc-solaris
-x86_64-darwinlegacy
-x86_64-linux
-x86_64-solaris
-"
-
-check_and_move() {
- f=$1
- a=$2
- if [ ! -r $f.$a ] ; then
- echo "Cannot find $f.$a"
- fi
- sz=$(stat -c %s $f.$a)
- if [ $sz -lt 1000000 ] ; then
- echo "file size suspicious for $f.$a: $sz"
- else
- mkdir -p bin/$a
- mv $f.$a bin/$a/$f
- fi
-}
-for a in $archs ; do
- wget -O luahbtex.$a $server$a/luahbtex
- check_and_move luahbtex $a
- wget -O luajithbtex.$a $server$a/luajithbtex
- check_and_move luajithbtex $a
-done
-
-
-
-