mirror of
https://github.com/dslm4515/BMLFS.git
synced 2026-01-14 00:33:30 +00:00
15 lines
362 B
Bash
Executable File
15 lines
362 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# source : http://download.kde.org/stable/frameworks/5.49/extra-cmake-modules-5.49.0.tar.xz
|
|
|
|
sed -i '/"lib64"/s/64//' kde-modules/KDEInstallDirs.cmake &&
|
|
|
|
mkdir build &&
|
|
cd build &&
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
|
|
|
|
read -p "Compile? " && make -j4 &&
|
|
read -p "Install? " && sudo -S porg -lp extra-cmake-modules-5.49.0 "make -j1 install"
|
|
|