forked from Luwx/LightlyShaders
-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.2: backport new features from plasma6 branch
- Loading branch information
Showing
69 changed files
with
9,183 additions
and
2,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
|
||
LIBKWIN_PATH=$(locate libkwin.so.5 | grep '\/libkwin.so.5$') | ||
LIBKWIN_DIR="$(dirname "${LIBKWIN_PATH}")" | ||
|
||
if [ ! -f "$LIBKWIN_PATH" ]; then | ||
echo "libkwin.so.5 library not found, exiting..." | ||
exit 1 | ||
fi | ||
|
||
if [ ! -f "$LIBKWIN_DIR/libkwin.so" ]; then | ||
echo "Creating libkwin.so symlink..." | ||
sudo ln -s "$LIBKWIN_PATH" "$LIBKWIN_DIR/libkwin.so" | ||
fi | ||
|
||
ORIGINAL_DIR=$(pwd) | ||
|
||
rm -rf build | ||
mkdir build | ||
cd build | ||
|
||
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr | ||
make -j$(nproc) | ||
sudo make install | ||
|
||
cd $ORIGINAL_DIR |
Binary file not shown.
Oops, something went wrong.