File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -772,6 +772,11 @@ install_deps_pkg() {
772
772
sudo pkg install --yes bash git gmake gcc rlwrap ripgrep curl gmake x11-toolkits/gtk30 x11-toolkits/gtkglext pango cairo vim
773
773
}
774
774
775
+ install_deps_apk () {
776
+ sudo apk add --no-cache bash git make gcc g++ libc-dev pango-dev libx11-dev gtk+2.0-dev wget rlwrap clang tmux screen openssl-dev glu-dev mesa-dev
777
+ check_ret sudo
778
+ }
779
+
775
780
776
781
install_deps_macos () {
777
782
if test_program_installed git; then
@@ -792,6 +797,7 @@ usage() {
792
797
$ECHO " deps-pacman - install required packages for Factor on Linux using pacman"
793
798
$ECHO " deps-dnf - install required packages for Factor on Linux using dnf"
794
799
$ECHO " deps-pkg - install required packages for Factor on FreeBSD using pkg"
800
+ $ECHO " deps-apk - install required packages for Factor on Alpine Linux using apk"
795
801
$ECHO " deps-macos - install git on macOS using port"
796
802
$ECHO " info-boot-image - print remote and disk boot image MD5"
797
803
$ECHO " info-check-factor-refresh-all-locally - check if local sources would cause refresh-all to change the image"
@@ -836,6 +842,7 @@ case "$1" in
836
842
deps-macos) install_deps_macos ;;
837
843
deps-dnf) install_deps_dnf ;;
838
844
deps-pkg) install_deps_pkg ;;
845
+ deps-apk) install_deps_apk ;;
839
846
info-boot-image) info_boot_image ;;
840
847
info-check-factor-refresh-all-locally) info_check_factor_refresh_all_locally ;;
841
848
update-boot-image) find_build_info; check_installed_programs; update_boot_image ;;
You can’t perform that action at this time.
0 commit comments