mirror of
https://github.com/YunoHost-Apps/ssbroom_ynh.git
synced 2024-09-03 20:26:29 +02:00
41 lines
No EOL
1.2 KiB
Bash
41 lines
No EOL
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
# dependencies used by the app
|
|
pkg_dependencies="expect"
|
|
|
|
description="Secure Scuttlebutt room server implemented in Go"
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|
|
|
|
|
|
ynh_detect_arch(){
|
|
local architecture
|
|
if [ -n "$(uname -m | grep arm64)" ] || [ -n "$(uname -m | grep aarch64)" ]; then
|
|
architecture="arm64"
|
|
elif [ -n "$(uname -m | grep 64)" ]; then
|
|
architecture="amd64"
|
|
elif [ -n "$(uname -m | grep 86)" ]; then
|
|
architecture="386"
|
|
elif [ -n "$(uname -m | grep armv7)" ]; then
|
|
architecture="arm7"
|
|
elif [ -n "$(uname -m | grep armv6)" ]; then
|
|
architecture="arm6"
|
|
else
|
|
architecture="unknown"
|
|
fi
|
|
echo $architecture
|
|
} |