Skip to content

Instantly share code, notes, and snippets.

@scolton99
Last active February 23, 2026 05:24
Show Gist options
  • Select an option

  • Save scolton99/9a3ef1cd777b3b818109ca29bffa643f to your computer and use it in GitHub Desktop.

Select an option

Save scolton99/9a3ef1cd777b3b818109ca29bffa643f to your computer and use it in GitHub Desktop.
#!/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