Created
February 15, 2019 17:17
-
-
Save ruverav/c613208201aeabc7e3e3211a97b01c6d to your computer and use it in GitHub Desktop.
Script to create deb packages for GameShell from mupen64plus plugin source folders (checkinstall package required)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cur_dir=$(pwd) | |
packages=( | |
"mupen64plus-audio-sdl" | |
"mupen64plus-core" | |
"mupen64plus-input-sdl" | |
"mupen64plus-rsp-cxd4" | |
"mupen64plus-rsp-hle" | |
"mupen64plus-rsp-z64" | |
"mupen64plus-ui-console" | |
"mupen64plus-video-arachnoid" | |
"mupen64plus-video-glide64mk2" | |
"mupen64plus-video-rice" | |
"mupen64plus-video-z64" | |
) | |
for pkgname in "${packages[@]}" | |
do | |
cd $cur_dir/$pkgname/projects/unix && \ | |
sudo NEON=1 VFP_HARD=1 USE_GLES=1 checkinstall -D -y --pkgname=$pkgname --install=no && \ | |
mv $cur_dir/$pkgname/projects/unix/${pkgname}_$(date +%Y%m%d)-1_armhf.deb $cur_dir/ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment