mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
5a9a62ee69
libopenmpt is a cross-platform C++ and C library to decode tracked music
files ("modules", like the .mod .xm .s3m .it formats) into raw PCM audio.
It is based on the player code of OpenMPT module tracker.
Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
10 lines
137 B
Bash
10 lines
137 B
Bash
#!/bin/sh
|
|
|
|
./libopenmpttest >/dev/null 2>&1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "PASS: libopenmpttest"
|
|
else
|
|
echo "FAIL: libopenmpttest"
|
|
fi
|