mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
05e69b43e9
* 3rdparty/zstd: Added Zstandard compression library version 1.5.5. * util/unzip.cpp: Added support for Zstandard compression (method 93). * util/chdcodec.cpp: Added support for Zstandard compression. * 3rdparty/flac: Always define NDEBUG to avoid log spam.
8 lines
197 B
Bash
Executable file
8 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
|
|
zstd=${ZSTD:-zstd}
|
|
|
|
# TODO: Address quirks and bugs tied to old versions of less, provide a mechanism to pass flags directly to zstd
|
|
|
|
export LESSOPEN="|-${zstd} -cdfq %s"
|
|
exec less "$@"
|