1 Star 0 Fork 48

李静波/RabbitRemoteControl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_debpackage.sh 883 Bytes
一键复制 编辑 原始数据 按行查看 历史
kl222 提交于 2023-04-27 20:42 +08:00 . CI: modify ubuntu.yml
#!/bin/bash
if [ -n "$1" -a -z "$QT_ROOT" ]; then
export QT_ROOT=$1
fi
if [ ! -f /usr/bin/qmake -a -z "$QT_ROOT" ]; then
echo "$0 QT_ROOT RabbitCommon_DIR"
exit -1
fi
if [ -n "$2" -a -z "$RabbitCommon_DIR" ]; then
export RabbitCommon_DIR=$2
fi
if [ -z "$RabbitCommon_DIR" ]; then
export RabbitCommon_DIR=`pwd`/../RabbitCommon
fi
if [ ! -d "$RabbitCommon_DIR" ]; then
echo "$0 QT_ROOT RabbitCommon_DIR"
exit -2
fi
if [ -z "$BUILD_TYPE" ]; then
export BUILD_TYPE=Release
fi
export PATH=$QT_ROOT/bin:$PATH
export LD_LIBRARY_PATH=$QT_ROOT/lib:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=$QT_ROOT/lib/pkgconfig:$PKG_CONFIG_PATH
#fakeroot debian/rules binary
#dpkg-buildpackage -us -uc -b #The -us -uc tell it there is no need to GPG sign the package. the -b is build binary
dpkg-buildpackage -us -uc #The -us -uc tell it there is no need to GPG sign the package
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/king29lee/RabbitRemoteControl.git
git@gitee.com:king29lee/RabbitRemoteControl.git
king29lee
RabbitRemoteControl
RabbitRemoteControl
master

搜索帮助