Fix bsnes naming and install info files.

This commit is contained in:
Themaister 2013-10-06 14:59:05 +02:00
parent 7355dcfd65
commit 42fb4470f4
2 changed files with 10 additions and 3 deletions

View File

@ -516,7 +516,7 @@ build_libretro_bsnes()
rm -f obj/*.o
rm -f out/*.${FORMAT_EXT}
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} compiler="$CXX" ui=target-libretro profile=performance -j$JOBS || die "Failed to build bSNES performance core"
cp -f out/bsnes_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"/bsnes_libretro_performance.${FORMAT_EXT}
cp -f out/bsnes_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"/bsnes_performance_libretro.${FORMAT_EXT}
else
echo "bSNES performance not fetched, skipping ..."
fi
@ -528,7 +528,7 @@ build_libretro_bsnes()
rm -f obj/*.o
rm -f out/*.${FORMAT_EXT}
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} compiler="$CXX" ui=target-libretro profile=balanced -j$JOBS || die "Failed to build bSNES balanced core"
cp -f out/bsnes_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"/bsnes_libretro_balanced.${FORMAT_EXT}
cp -f out/bsnes_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"/bsnes_balanced_libretro.${FORMAT_EXT}
else
echo "bSNES compat not fetched, skipping ..."
fi
@ -540,7 +540,7 @@ build_libretro_bsnes()
rm -f obj/*.o
rm -f out/*.${FORMAT_EXT}
${MAKE} -f Makefile platform=${FORMAT_COMPILER_TARGET} compiler="$CXX" ui=target-libretro profile=accuracy -j$JOBS || die "Failed to build bSNES accuracy core"
cp -f out/bsnes_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"/bsnes_libretro_accuracy.${FORMAT_EXT}
cp -f out/bsnes_libretro${FORMAT}.${FORMAT_EXT} "$RARCH_DIST_DIR"/bsnes_accuracy_libretro.${FORMAT_EXT}
fi
}

View File

@ -41,3 +41,10 @@ do
fi
done
for infofile in "$RARCH_DIR"/info/*.info
do
if [ -f "$infofile" ]; then
install -v -m644 "$infofile" "$LIBRETRO_DIR"
fi
done