added everything

This commit is contained in:
Metario
2017-04-17 06:17:10 -06:00
commit 9c6ff74f19
6121 changed files with 1625704 additions and 0 deletions

29
lib/xiph/linux/checklinks.sh Executable file
View File

@ -0,0 +1,29 @@
#! /bin/bash
FILES="libogg.so.0.5.2
libtheora.so.0.1.0
libvorbisenc.so.2.0.0
libvorbisfile.so.3.1.0
libvorbis.so.0.3.0"
DIR=`dirname $0`
CWD=`pwd`
cd ${DIR}
for file in $FILES
do
# Check if library file and its shared counter part exists.
link=`ls ${file} | awk -F. '{printf $1"."$2 "\n" }'`
if [ -e ${file} -a ! -e ${link} ]
then
echo "creating link from TARGET ${DIR}/${file} to LINK_NAME ${DIR}/${link}";
ln -sf ${file} ${link}
ln -sf ${file} ${link}.0
continue # On to next.
fi
done
cd ${CWD}
exit 0

BIN
lib/xiph/linux/libogg.so.0.5.2 Executable file

Binary file not shown.

BIN
lib/xiph/linux/libtheora.so.0.1.0 Executable file

Binary file not shown.

BIN
lib/xiph/linux/libvorbis.so.0.3.0 Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.