Robert Hamblin: 1 f_*: add platform specific dependency documentation 11 files changed, 22 insertions(+), 11 deletions(-)
Copy & paste the following snippet into your terminal to import this patchset into git:
curl -s https://lists.sr.ht/~mil/framebufferphone-devel/patches/35949/mbox | git am -3Learn more about email & git
in preperation for addition of a gen_archpackage.sh script --- scripts/f_audio | 3 ++- scripts/f_files | 3 ++- scripts/f_game | 3 ++- scripts/f_maps | 3 ++- scripts/f_networks | 3 ++- scripts/f_phone | 3 ++- scripts/f_rss | 3 ++- scripts/f_theme | 3 ++- scripts/f_timer | 3 ++- scripts/f_web | 3 ++- scripts/f_youtube | 3 ++- 11 files changed, 22 insertions(+), 11 deletions(-) diff --git a/scripts/f_audio b/scripts/f_audio index 26d4e31..a5c871e 100755 --- a/scripts/f_audio +++ b/scripts/f_audio @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="alsa-utils" +DEP_ALPINE="alsa-utils" +DEP_ARCH="alsa-utils" DEC="Adjust audio output devices and volume" DOC=" Allows you to adjust audio output devices and volume by using diff --git a/scripts/f_files b/scripts/f_files index 5e4009e..5fdac71 100755 --- a/scripts/f_files +++ b/scripts/f_files @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="vim mpv fbida-fbi fbida-fbgs" +DEP_ALPINE="vim mpv fbida-fbi fbida-fbgs" +DEP_ARCH="vim mpv fbida" DEC="Browse files on your filesystem" DOC=" An interactive prompt-driven filebrowser. Enter the name of the diff --git a/scripts/f_game b/scripts/f_game index 9083b44..eb07e6b 100755 --- a/scripts/f_game +++ b/scripts/f_game @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="moon-buggy" +DEP_ALPINE="moon-buggy" +DEP_ARCH="moon-buggy" DEC="Play classic console games" DOC=" Launches classic console games with keybindings set in fbp. diff --git a/scripts/f_maps b/scripts/f_maps index 3541a85..6bc14e3 100755 --- a/scripts/f_maps +++ b/scripts/f_maps @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="mepo tslib directfb mesa-gl kbd vis" +DEP_ALPINE="mepo tslib directfb mesa-gl kbd vis" +DEP_ARCH="mepo tslib directfb mesa kbd vis" DEC="Browse OSM maps using mepo (via SDL directfb)." DOC=" Launches mepo to browse OSM maps in SDL / directfb mode. Uses chvt diff --git a/scripts/f_networks b/scripts/f_networks index 88e61f8..20269b5 100755 --- a/scripts/f_networks +++ b/scripts/f_networks @@ -1,10 +1,11 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP=" +DEP_ALPINE=" networkmanager dnsmasq networkmanager networkmanager-cli networkmanager-openrc networkmanager-tui networkmanager-wifi networkmanager-wwan " +DEP_ARCH="networkmanager ntp" DEC="Allows managing gsm/wpa connections via underlying nmcli calls" DOC=" Allows mangaging gsm/wpa connectiona via nmcli. Allows for creating, diff --git a/scripts/f_phone b/scripts/f_phone index 47ae9d9..df4bb02 100755 --- a/scripts/f_phone +++ b/scripts/f_phone @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="polkit modemmanager linuxconsoletools pinephone-call-audio pn" +DEP_ALPINE="polkit modemmanager linuxconsoletools pinephone-call-audio pn" +DEP_ARCH="polkit modemmanager linuxconsole pinephone-call-audio pn" DEC="Manages phone calls / text messages using modemmanager" DOC=" A single interactive prompt-driven script to manage all aspects of diff --git a/scripts/f_rss b/scripts/f_rss index cafb620..32d664d 100755 --- a/scripts/f_rss +++ b/scripts/f_rss @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="sfeed w3m" +DEP_ALPINE="sfeed w3m" +DEP_ARCH="sfeed w3m" DEC="Fetches data from RSS via sfeed and allows you to view via sfeed_curses" DOC=" Allows you to fetch RSS feeds via sfeed and then view via sfeed_curses with diff --git a/scripts/f_theme b/scripts/f_theme index 83f902d..a040a81 100755 --- a/scripts/f_theme +++ b/scripts/f_theme @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="terminus-font util-linux-misc" +DEP_ALPINE="terminus-font util-linux-misc" +DEP_ARCH="terminus-font util-linux" DEC="Change the framebuffer theme (font & colors)" DOC=" Allows customizing your framebuffer's theme by setting the font, colors, diff --git a/scripts/f_timer b/scripts/f_timer index 2a9e234..fae6116 100755 --- a/scripts/f_timer +++ b/scripts/f_timer @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="linuxconsoletools util-linux-misc" +DEP_ALPINE="linuxconsoletools util-linux-misc" +DEP_ARCH="linuxconsole util-linux bc" DEC="Set a countdown timer to be alerted" DOC=" Set a countdown timer after which expiry you'll be alerted. diff --git a/scripts/f_web b/scripts/f_web index a235a38..3463fcf 100755 --- a/scripts/f_web +++ b/scripts/f_web @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="w3m netsurf-framebuffer tslib" +DEP_ALPINE="w3m netsurf-framebuffer tslib" +DEP_ARCH="w3m netsurf-fb util-linux bc" DEC="Select a website and browse via w3m or netsurf" DOC=" Browse the web via w3m (text) or netsurf (graphical) setting fbp hotkeys diff --git a/scripts/f_youtube b/scripts/f_youtube index ac4ca88..1e300ed 100755 --- a/scripts/f_youtube +++ b/scripts/f_youtube @@ -1,6 +1,7 @@ #!/usr/bin/env osh shopt -s strict:all; shopt --unset strict_errexit -DEP="codemadness-frontends mpv youtube-dl" +DEP_ALPINE="codemadness-frontends mpv youtube-dl" +DEP_ARCH="codemadness-frontends mpv youtube-dl" DEC="Listen or view youtube videos via mpv" DOC=" f_youtube allows you to search and playback either audio or video from -- 2.38.0