Last active
February 23, 2026 05:24
-
-
Save scolton99/9a3ef1cd777b3b818109ca29bffa643f to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env fish | |
| set DEPS 'autogen' 'base-devel' | |
| set YAYDEPS 'palm-os-sdk-git' | |
| set REPONAMEORDER 'pilrc-sc' 'prc-tools-sc' 'pilot-link-sc' 'jpilot-sc' | |
| sudo pacman -S --needed --noconfirm $DEPS | |
| for dep in $YAYDEPS | |
| yay --sync --needed --noconfirm --quiet $dep | |
| end | |
| set workdir (mktemp -d) | |
| cd $workdir | |
| for repo in $REPONAMEORDER | |
| git clone https://github.com/scolton99/$repo $repo | |
| cd $repo | |
| makepkg -sif --noconfirm --needed | |
| end | |
| rm -rf $workdir | |
| sudo palmdev-prep -d sdk-4 -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment