mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-06 03:15:23 +01:00
14 lines
308 B
Bash
14 lines
308 B
Bash
src_configure() {
|
|
LDFLAGS="-static" \
|
|
LIBS="-lssl -lcrypto" \
|
|
CURL_CONFIG_OPTS="--static-libs" \
|
|
./configure \
|
|
--prefix="${PREFIX}" \
|
|
--with-gitconfig=/etc/gitconfig \
|
|
--with-python=python3 \
|
|
--with-curl
|
|
}
|
|
|
|
src_compile() {
|
|
make "${MAKEJOBS}"
|
|
}
|