https://github.com/chigraph/precompiled-kf5-linux
Precompiled KDE frameworks 5 for linux
https://github.com/chigraph/precompiled-kf5-linux
Last synced: about 1 year ago
JSON representation
Precompiled KDE frameworks 5 for linux
- Host: GitHub
- URL: https://github.com/chigraph/precompiled-kf5-linux
- Owner: chigraph
- License: unlicense
- Created: 2017-04-16T19:33:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-10T00:03:54.000Z (over 8 years ago)
- Last Synced: 2025-04-08T14:45:57.535Z (about 1 year ago)
- Language: Shell
- Size: 16.6 KB
- Stars: 5
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# precompiled-kf5-linux
Precompiled KDE frameworks 5 for linux. Good for use in travis.
A bunch of scripts for generating precompiled KF5 tarballs/directories
# build_frameworks.sh
Generates a tar.XX file and/or a directory with KF5 installed in it. Example:
```bash
./build_frameworks.sh -i ~/my-kf5-install -g Ninja -t Debug -o ~/my-kf5-tarball.tar.xz
```
# usage
In your travis script, find a good place to download and extract the tarball:
```bash
cd ~
mkdir kf5-release && cd kf5-release
wget https://github.com/chigraph/precompiled-kf5-linux/releases/download/precompiled/kf5-gcc6-linux64-release.tar.xz -O kf5.tar.xz
```
then extract it:
```bash
tar xf kf5.tar.xz
```
Then pass `-DCMAKE_PREFIX_PATH=~/kf5-release` to your cmake command.
This makes sure your `find_package` calls can succeed:
```bash
cmake -DCMAKE_PREFIX_PATH=~/kf5-release
```