summaryrefslogtreecommitdiffstats
path: root/package/package.pro
blob: 85d46ec0e908e983b6d9af24c504c1410fab6302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DISTFILES = icon.svg config.xml

copy_icon.target = $$OUT_PWD/root/icon.svg
copy_icon.depends = $$_PRO_FILE_PWD_/icon.svg
copy_icon.commands = $(COPY_FILE) \"$$replace(copy_icon.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_icon.target, /, $$QMAKE_DIR_SEP)\"
QMAKE_EXTRA_TARGETS += copy_icon
PRE_TARGETDEPS += $$copy_icon.target

copy_config.target = $$OUT_PWD/root/config.xml
copy_config.depends = $$_PRO_FILE_PWD_/config.xml
copy_config.commands = $(COPY_FILE) \"$$replace(copy_config.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_config.target, /, $$QMAKE_DIR_SEP)\"
QMAKE_EXTRA_TARGETS += copy_config
PRE_TARGETDEPS += $$copy_config.target

WGT_TYPE =
CONFIG(debug, debug|release) {
    WGT_TYPE = -debug
}

wgt.target = package
wgt.commands = wgtpkg-pack -f -o onscreenapp$${WGT_TYPE}.wgt root

QMAKE_EXTRA_TARGETS += wgt
span class="se">\ python-tz \ python-yaml \ python-zmq || exit $? ;; *) echo "Unknow compoments $1" exit 1 ;; esac if [ ! -e /root/lava-server ];then git clone https://github.com/Linaro/lava-server.git /root/lava-server || exit $? fi cd /root/lava-server git checkout $2 || exit $? if [ ! -e /root/$1 ];then git clone https://github.com/Linaro/$1.git /root/$1 || exit $? fi cd /root/$1 git checkout $2 || exit $? git config --global user.name "Docker Build" git config --global user.email "info@kernelci.org" # By default, debian-dev-build.sh use always the last tag as version sed -i "s,VERSION=.*,VERSION=$3," /root/lava-server/share/debian-dev-build.sh echo "cd \${DIR} && dpkg -i *.deb" >> /root/lava-server/share/debian-dev-build.sh cd /root/$1 /root/lava-server/share/debian-dev-build.sh -p $1 -b $3 exit $?