live-bootstrap/steps/git-2.43.0/pass1.sh
2024-01-28 12:35:19 +11:00

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}"
}