mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 11:14:11 +00:00
Fix bsnes naming and install info files.
This commit is contained in:
parent
7355dcfd65
commit
42fb4470f4
@ -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
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user