summaryrefslogtreecommitdiff
path: root/unigen/fetch
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-11 00:50:57 +0100
committerGitHub <noreply@github.com> 2026-03-11 00:50:57 +0100
commitf149bfa62cf4b2c6ee1033f7918ccbe8c452702b (patch)
tree96482de4cb331268bd4afc5753166b7a9cbd2a3c /unigen/fetch
parente59c54f8bc640c7dc8ccef96d538e728c47bc08e (diff)
parent301ee908e1409c6d42e85c9431d01a92be676753 (diff)
Merge pull request #2 from Mango0x45/buildscript
Buildscript
Diffstat (limited to 'unigen/fetch')
-rwxr-xr-xunigen/fetch19
1 files changed, 0 insertions, 19 deletions
diff --git a/unigen/fetch b/unigen/fetch
deleted file mode 100755
index 46c02f9..0000000
--- a/unigen/fetch
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-set -e
-
-cd "${0%/*}"
-trap 'rm -f UCD.zip' EXIT
-
-set -x
-mkdir -p data
-curl -LO https://www.unicode.org/Public/zipped/latest/UCD.zip
-unzip -od data UCD.zip
-
-# XID_Start and XID_Continue additions
-cat <<-EOF >>data/DerivedCoreProperties.txt
-0024 ; XID_Start # Pc DOLLAR SIGN
-005F ; XID_Start # Pc LOW LINE
-2032..2034 ; XID_Continue # Po [3] PRIME..TRIPLE PRIME
-2057 ; XID_Continue # Po QUADRUPLE PRIME
-EOF