mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-21 23:00:06 -07:00
13 lines
207 B
Bash
Executable File
13 lines
207 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
cd libclc
|
|
cmake -B build \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DLIBCLC_TARGETS_TO_BUILD=''
|
|
|
|
cmake --build build
|
|
cmake --install build
|