]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/BinWrappers/PosixLike/BrotliCompress
BaseTools: Add Brotli algorithm tool
[mirror_edk2.git] / BaseTools / BinWrappers / PosixLike / BrotliCompress
diff --git a/BaseTools/BinWrappers/PosixLike/BrotliCompress b/BaseTools/BinWrappers/PosixLike/BrotliCompress
new file mode 100644 (file)
index 0000000..a571ff6
--- /dev/null
@@ -0,0 +1,42 @@
+#!/usr/bin/env bash\r
+#\r
+# This script will exec Brotli tool.\r
+#\r
+# Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
+# This program and the accompanying materials\r
+# are licensed and made available under the terms and conditions of the BSD License\r
+# which accompanies this distribution.  The full text of the license may be found at\r
+# http://opensource.org/licenses/bsd-license.php\r
+#\r
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+#\r
+LVL="--quality 9"\r
+\r
+while [ $# != 0 ];do\r
+  case $1 in\r
+    -d)\r
+      ARGS+="--decompress "\r
+    ;;\r
+    -e)\r
+    ;;\r
+    -g)\r
+      ARGS+="--gap $2 "\r
+      shift\r
+    ;;\r
+    -l)\r
+      LVL="--quality $2 "\r
+      shift\r
+    ;;\r
+    -o)\r
+      ARGS+="--output $2 "\r
+      shift\r
+    ;;\r
+    *)\r
+      ARGS+="--input $1 "\r
+  esac\r
+\r
+shift\r
+done\r
+\r
+exec Brotli $ARGS $LVL\r