File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,31 @@ sudo apt install -y meson ninja-build libpixman-1-dev zlib1g-dev libdrm-dev pkg-
66
77TOP_DIR=$( pwd)
88# Clone and build aml
9- git clone https://github.com/any1/aml && pushd aml
9+ if [ ! -d " aml" ]; then
10+ git clone https://github.com/any1/aml --depth=1 -b v0.3.0
11+ else
12+ pushd aml
13+ git fetch --tags
14+ git checkout v0.3.0
15+ popd
16+ fi
17+ pushd aml
1018meson -Dprefix=$TOP_DIR /_static --default-library=static build
1119ninja -C build install
1220popd
1321
1422export PKG_CONFIG_PATH=$TOP_DIR /_static/lib/$( uname -m) -linux-gnu/pkgconfig
1523
1624# Clone and build NeatVNC
17- git clone https://github.com/any1/neatvnc --depth=1 -b v0.8.1 && pushd neatvnc
25+ if [ ! -d " neatvnc" ]; then
26+ git clone https://github.com/any1/neatvnc --depth=1 -b v0.9.5
27+ else
28+ pushd neatvnc
29+ git fetch --tags
30+ git checkout v0.9.5
31+ popd
32+ fi
33+ pushd neatvnc
1834meson -Dprefix=$TOP_DIR /_static --default-library=static build
1935ninja -C build install
2036popd
You can’t perform that action at this time.
0 commit comments