]> de.git.xonotic.org Git - xonotic/mediasource.git/blobdiff - fonts/xolonium/scripts/generate-otf.ff
Update Xolonium font sources to version 2.2
[xonotic/mediasource.git] / fonts / xolonium / scripts / generate-otf.ff
diff --git a/fonts/xolonium/scripts/generate-otf.ff b/fonts/xolonium/scripts/generate-otf.ff
deleted file mode 100755 (executable)
index 5f739ac..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/local/bin/fontforge
-# Usage: [fontforge -script] generate-otf.ff SOURCEFILE [FEATUREFILE ...] OTFFILE
-
-       Open($1)
-
-# Merge feature files
-
-       shift
-       while ($argc > 2)
-               MergeFeature($1)
-               shift
-       endloop
-
-# Set unique ID in TTF name table
-
-       TTF_LANG_US = 0x0409
-       TTF_NAME_UNIQUEID = 3
-       DATE = Strftime("%Y%m%d")
-
-       SetTTFName(TTF_LANG_US, TTF_NAME_UNIQUEID, $fullname + " " + $fontversion + " " + DATE)
-
-# Generate font
-
-       FLAG_OLDKERN = 0x800 # Include old fashioned kern tables for legacy applications
-
-       Generate($1, "", FLAG_OLDKERN)
-       Quit(0)