mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-22 19:16:32 +01:00
24 lines
423 B
Bash
24 lines
423 B
Bash
# 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}"
|
|
}
|