aboutsummaryrefslogtreecommitdiff
path: root/network/rustdesk-opt/rustdesk-opt.SlackBuild
blob: c246e330fe39e55e6daf07202c71fbcb24b4de98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/bin/bash

# Slackware build script for rustdesk-opt

# Copyright 2024 Olivier Brouckaert <olivier.b@i-services.be>, Brussels, Belgium
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=rustdesk-opt
SRCNAM=rustdesk
VERSION=${VERSION:-1.3.9}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

if [ -z "$ARCH" ]; then
  ARCH=$( uname -m )
fi

if [ "$ARCH" != "x86_64" ]; then
  echo "This package works only on x86_64 architecture."
  exit 1
fi

# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
  echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
  exit 0
fi

TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

LIBDIRSUFFIX="64"

set -e

if [ ! -e $CWD/vcpkg-2023.04.15.tar.gz ]; then
  echo "File vcpkg-2023.04.15.tar.gz not found in $CWD"
  exit 1
fi

if [ ! -e $CWD/$SRCNAM-$VERSION.tar.gz ]; then
  echo "File $SRCNAM-$VERSION.tar.gz not found in $CWD"
  exit 1
fi

if [ ! -e $CWD/libsciter-gtk.so ]; then
  echo "File libsciter-gtk.so not found in $CWD"
  exit 1
fi

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP

# vcpkg

rm -rf vcpkg-2023.04.15
tar -xvzf $CWD/vcpkg-2023.04.15.tar.gz

if [ -e $CWD/vcpkg-2023.04.15-deps.tar.gz ] && [ -e $CWD/vcpkg-glibc ]; then
  cd vcpkg-2023.04.15
  touch vcpkg.disable-metrics
  tar -xvzf $CWD/vcpkg-2023.04.15-deps.tar.gz
  cp $CWD/vcpkg-glibc vcpkg
  chmod 755 vcpkg
  cd ..

  VCPKG_DL="--no-downloads"
else
  ./vcpkg-2023.04.15/bootstrap-vcpkg.sh --disableMetrics

  VCPKG_DL=""
fi

export VCPKG_ROOT=$TMP/vcpkg-2023.04.15
./vcpkg-2023.04.15/vcpkg --disable-metrics $VCPKG_DL install libvpx libyuv opus aom

# rustdesk

export PATH="/opt/rust/bin:$PATH"

if [ -z "$LD_LIBRARY_PATH" ]; then
  export LD_LIBRARY_PATH="/opt/rust/lib$LIBDIRSUFFIX"
else
  export LD_LIBRARY_PATH="/opt/rust/lib$LIBDIRSUFFIX:$LD_LIBRARY_PATH"
fi

rm -rf $SRCNAM-$VERSION
tar -xvzf $CWD/$SRCNAM-$VERSION.tar.gz
cd $SRCNAM-$VERSION
mkdir -p target/release
cp $CWD/libsciter-gtk.so target/release/
chmod 755 target/release/libsciter-gtk.so

if [ -e $CWD/$SRCNAM-$VERSION-deps.tar.gz ]; then
  tar -xvzf $CWD/$SRCNAM-$VERSION-deps.tar.gz
elif [ -e .gitmodules ]; then
  cd libs
  for url in `cat ../.gitmodules | grep "url =" | sed "s/url =//"`
  do
    git clone $url
  done
  cd ..
fi

export CARGO_HOME=$TMP/$SRCNAM-$VERSION/.cargo

VCPKG_ROOT=$VCPKG_ROOT cargo build --release

mkdir -p $PKG/opt/rustdesk
mkdir -p $PKG/usr/bin
mkdir -p $PKG/usr/share/applications
mkdir -p $PKG/usr/share/icons/hicolor/{32x32,64x64,128x128,256x256,1024x1024}/apps

cp ./res/rustdesk.desktop $PKG/usr/share/applications/
sed -i 's/Comment=Remote Desktop/Comment=Connect to remote machines/' $PKG/usr/share/applications/rustdesk.desktop

cp ./res/32x32.png $PKG/usr/share/icons/hicolor/32x32/apps/rustdesk.png
cp ./res/64x64.png $PKG/usr/share/icons/hicolor/64x64/apps/rustdesk.png
cp ./res/128x128.png $PKG/usr/share/icons/hicolor/128x128/apps/rustdesk.png
cp $CWD/256x256.png $PKG/usr/share/icons/hicolor/256x256/apps/rustdesk.png
cp ./res/icon.png $PKG/usr/share/icons/hicolor/1024x1024/apps/rustdesk.png

cp -r ./{libs,src,flutter} $PKG/opt/rustdesk/
rmdir $PKG/opt/rustdesk/libs/hbb_common/.git/{refs/tags,objects/info,branches}
cp ./target/release/{*.so,naming,rustdesk,service} $PKG/opt/rustdesk/

cat << EOF > $PKG/usr/bin/rustdesk
#!/bin/bash

if [ -z \$1 ]; then
   params=""
else
   params=\$1
fi

if [ -d /opt/rustdesk ]; then
   cd /opt/rustdesk
   export NO_AT_BRIDGE=1
   ./rustdesk \$params
fi
EOF

chmod +x $PKG/usr/bin/rustdesk

find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
  | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION

cp -r LICENCE README.md docs $PKG/usr/doc/$PRGNAM-$VERSION/

cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh

cd $PKG

/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE