We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebd360f commit e5f2b58Copy full SHA for e5f2b58
scriptmodules/ports/eduke32.sh
@@ -18,7 +18,7 @@ rp_module_section="opt"
18
function depends_eduke32() {
19
local depends=(
20
flac libflac-dev libvorbis-dev libpng-dev libvpx-dev freepats
21
- libsdl2-dev libsdl2-mixer-dev
+ libsdl2-dev libsdl2-mixer-dev rename
22
)
23
24
isPlatform "x86" && depends+=(nasm)
@@ -77,8 +77,11 @@ function install_eduke32() {
77
function game_data_eduke32() {
78
local dest="$romdir/ports/duke3d"
79
if [[ "$md_id" == "eduke32" ]]; then
80
+ mkUserDir "$dest"
81
+ pushd "$dest"
82
+ rename 'y/A-Z/a-z/' *
83
+ popd
84
if [[ ! -f "$dest/duke3d.grp" ]]; then
- mkUserDir "$dest"
85
local temp="$(mktemp -d)"
86
download "$__archive_url/3dduke13.zip" "$temp"
87
unzip -L -o "$temp/3dduke13.zip" -d "$temp" dn3dsw13.shr
0 commit comments