libretro-super/libretro-install.sh

52 lines
976 B
Bash
Raw Normal View History

2013-12-09 01:10:42 +00:00
#!/bin/bash
2011-11-02 15:27:23 +00:00
. ./libretro-config.sh
2013-05-19 09:17:25 +00:00
2013-05-08 11:00:38 +00:00
# BSDs don't have readlink -f
read_link()
{
TARGET_FILE="$1"
cd $(dirname "$TARGET_FILE")
TARGET_FILE=$(basename "$TARGET_FILE")
while [ -L "$TARGET_FILE" ]
do
TARGET_FILE=$(readlink "$TARGET_FILE")
cd $(dirname "$TARGET_FILE")
TARGET_FILE=$(basename "$TARGET_FILE")
done
PHYS_DIR=$(pwd -P)
RESULT="$PHYS_DIR/$TARGET_FILE"
echo $RESULT
}
SCRIPT=$(read_link "$0")
BASE_DIR=$(dirname "$SCRIPT")
RARCH_DIR="$BASE_DIR/dist"
2013-05-19 09:17:25 +00:00
RARCH_DIST_DIR="$RARCH_DIR/$DIST_DIR"
2013-05-03 09:32:01 +00:00
2011-11-02 15:27:23 +00:00
if [ -z "$1" ]; then
2012-04-16 17:33:18 +00:00
LIBRETRO_DIR="/usr/local/lib/libretro"
2011-11-02 15:27:23 +00:00
else
2012-04-16 17:33:18 +00:00
LIBRETRO_DIR="$1"
2011-11-02 15:27:23 +00:00
fi
mkdir -p "$LIBRETRO_DIR"
2013-05-03 09:32:01 +00:00
for lib in "$RARCH_DIST_DIR"/*
2011-11-02 15:27:23 +00:00
do
2013-05-08 11:00:38 +00:00
if [ -f "$lib" ]; then
install -v -m644 "$lib" "$LIBRETRO_DIR"
2011-11-02 15:27:23 +00:00
else
echo "Library $lib not found, skipping ..."
fi
done
for infofile in "$RARCH_DIR"/info/*.info
do
if [ -f "$infofile" ]; then
install -v -m644 "$infofile" "$LIBRETRO_DIR"
fi
done