mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-02 07:01:30 +00:00
27 lines
1.2 KiB
Bash
27 lines
1.2 KiB
Bash
#!/bin/bash
|
|
BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
PROJECT_DIR=$(dirname "$BASE_DIR")
|
|
|
|
echo "1. 安装依赖"
|
|
brew install libtiff libjpeg webp little-cms2 openssl gettext git \
|
|
git-lfs libxml2 libxmlsec1 pkg-config postgresql freetds openssl \
|
|
mysql-client mariadb-connector-c \
|
|
libffi freerdp poppler
|
|
|
|
# mysqlclient 需要通过 pkg-config 找到 mysql/mariadb 头文件与库
|
|
export PKG_CONFIG_PATH="$(brew --prefix mysql-client)/lib/pkgconfig:$(brew --prefix mariadb-connector-c)/lib/pkgconfig:${PKG_CONFIG_PATH}"
|
|
export CFLAGS="-I$(brew --prefix mysql-client)/include/mysql ${CFLAGS}"
|
|
export LDFLAGS="-L$(brew --prefix mysql-client)/lib ${LDFLAGS}"
|
|
pip install daphne==4.0.0 channels channels-redis
|
|
|
|
echo "2. 下载 IP 数据库"
|
|
ip_db_path="${PROJECT_DIR}/apps/common/utils/geoip/GeoLite2-City.mmdb"
|
|
wget "https://download.jumpserver.org/files/GeoLite2-City.mmdb" -O "${ip_db_path}"
|
|
|
|
if ! uname -a | grep 'ARM64' &> /dev/null;then
|
|
exit 0
|
|
fi
|
|
|
|
echo "4. For Apple processor"
|
|
LDFLAGS="-L$(brew --prefix freetds)/lib -L$(brew --prefix openssl@1.1)/lib" CFLAGS="-I$(brew --prefix freetds)/include" pip install $(grep 'pymssql' requirements.txt)
|