summaryrefslogtreecommitdiffstats
path: root/core/modules/looking-glass-client/module.build
diff options
context:
space:
mode:
authorManuel Bentele2021-10-12 11:01:31 +0200
committerManuel Bentele2021-10-12 13:12:56 +0200
commit7f63f35032f5f2ed934f0c7a323474578eb3edb4 (patch)
treea892af5c0b6f6293e7ac590c3a1394d325bac549 /core/modules/looking-glass-client/module.build
parent[setup_target] Compile Gsettings schemas in a target's post process (diff)
downloadmltk-7f63f35032f5f2ed934f0c7a323474578eb3edb4.tar.gz
mltk-7f63f35032f5f2ed934f0c7a323474578eb3edb4.tar.xz
mltk-7f63f35032f5f2ed934f0c7a323474578eb3edb4.zip
[looking-glass-client] Use CMake's generated install target for installation
Diffstat (limited to 'core/modules/looking-glass-client/module.build')
-rw-r--r--core/modules/looking-glass-client/module.build14
1 files changed, 8 insertions, 6 deletions
diff --git a/core/modules/looking-glass-client/module.build b/core/modules/looking-glass-client/module.build
index 52609237..179d7e72 100644
--- a/core/modules/looking-glass-client/module.build
+++ b/core/modules/looking-glass-client/module.build
@@ -6,17 +6,19 @@ fetch_source() {
build() {
local SRCDIR="${MODULE_WORK_DIR}/src/LookingGlass"
- local CLIENTBUILDDIR="client/build"
- mkdir -p "${SRCDIR}/${CLIENTBUILDDIR}" || perror "Failed to create CMake build directory!"
- cde "${SRCDIR}/${CLIENTBUILDDIR}"
+ local DSTDIR="${MODULE_BUILD_DIR}"
+
+ mkdir -p "${SRCDIR}/client/build" || perror "Failed to create CMake build directory!"
+ cde "${SRCDIR}/client/build"
+
cmake -DENABLE_WAYLAND=no \
-DENABLE_X11=yes \
+ -DCMAKE_INSTALL_PREFIX=/usr \
../ || perror "'cmake' failed."
make || perror "'make' failed."
- mkdir -p "${MODULE_BUILD_DIR}/opt/openslx/bin"
- cp "${SRCDIR}/${CLIENTBUILDDIR}/looking-glass-client" "${MODULE_BUILD_DIR}/opt/openslx/bin/looking-glass-client" || perror "'cp' failed."
+ DESTDIR="${DSTDIR}" make install || perror "'make install' failed."
}
post_copy() {
:
-} \ No newline at end of file
+}