mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 03:26:31 +01:00
fix(steps-guix): add cmake bootstrap build and libgit2 cmake-based build steps
This commit is contained in:
parent
ddbe55b76b
commit
1933332d36
5 changed files with 61 additions and 2 deletions
24
steps-guix/cmake-4.2.3/pass1.sh
Normal file
24
steps-guix/cmake-4.2.3/pass1.sh
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
./bootstrap \
|
||||
--prefix="${PREFIX}" \
|
||||
--parallel="${JOBS}" \
|
||||
--no-qt-gui \
|
||||
-- \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_USE_OPENSSL=ON \
|
||||
-DCMAKE_INSTALL_LIBDIR="${LIBDIR}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make "${MAKEJOBS}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
make install DESTDIR="${DESTDIR}"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue