Mercurial > hg > pub > prymula > com
diff DPF-Prymula-audioplugins/dpf/utils/generate-ttl.sh @ 3:84e66ea83026
DPF-Prymula-audioplugins-0.231015-2
author | prymula <prymula76@outlook.com> |
---|---|
date | Mon, 16 Oct 2023 21:53:34 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DPF-Prymula-audioplugins/dpf/utils/generate-ttl.sh Mon Oct 16 21:53:34 2023 +0200 @@ -0,0 +1,41 @@ +#!/bin/bash + +# function not available on some systems +if ! which realpath &>/dev/null; then + function realpath() { + [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}" + } +fi + +set -e + +if [ ! -d bin ]; then + echo "Please run this script from the source root folder" + exit +fi + +PWD="$(dirname "${0}")" + +if [ -f "${PWD}/lv2_ttl_generator.exe" ]; then + GEN="${PWD}/lv2_ttl_generator.exe" + EXT=dll +else + GEN="$(realpath ${PWD}/lv2_ttl_generator)" + if [ -d /Library/Audio ]; then + EXT=dylib + else + EXT=so + fi +fi + +cd bin +FOLDERS=`find . -type d -name \*.lv2` + +for i in ${FOLDERS}; do + cd ${i} + FILE="$(ls *.${EXT} 2>/dev/null | sort | head -n 1)" + if [ -n "${FILE}" ]; then + ${EXE_WRAPPER} "${GEN}" "./${FILE}" + fi + cd .. +done