mirror of
https://github.com/hkmadao/rtsp2rtmp.git
synced 2025-09-26 19:31:19 +08:00
40 lines
1.7 KiB
Bash
40 lines
1.7 KiB
Bash
#!/bin/bash
|
||
#./build.sh 0.0.1
|
||
#vscode每次保存会将linux换行符替换为window换行符,如果此文件不能执行,请自行替换换行符
|
||
ver=$1
|
||
if [ -n "${ver}" ]; then
|
||
echo package version "${ver}"
|
||
else
|
||
echo no version param
|
||
exit 1
|
||
fi
|
||
#打多个平台的包
|
||
platforms="windows_amd64 linux_amd64 linux_arm"
|
||
rm -rf ./resources/output/releases/
|
||
for platform in $platforms; do
|
||
|
||
export GOOS=$(echo "$platform" | gawk 'BEGIN{FS="_"} {print $1}')
|
||
export GOARCH=$(echo "$platform" | gawk 'BEGIN{FS="_"} {print $2}')
|
||
export CGO_ENABLED=0
|
||
echo "${GOOS}"_"${GOARCH}"
|
||
if [[ "${GOOS}" == "windows" ]]; then
|
||
go build -o ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/rtsp2rtmp.exe main.go
|
||
else
|
||
go build -o ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/rtsp2rtmp main.go
|
||
fi
|
||
|
||
mkdir -p ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/resources/output/live
|
||
mkdir -p ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/resources/output/log
|
||
mkdir -p ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/resources/conf
|
||
|
||
cp -r ./resources/static ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/resources/static/
|
||
cp -r ./resources/conf ./resources/output/releases/rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/resources/conf
|
||
|
||
cd ./resources/output/releases/ || exit
|
||
rm -rf rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}".tar.gz
|
||
tar -zcvf ./rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}".tar.gz rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/
|
||
|
||
# rm -rf ./rtsp2rtmp_"${ver}"_"${GOOS}"_"${GOARCH}"/
|
||
cd ../../../
|
||
done
|