mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
c07f91474d
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
27 lines
987 B
Bash
Executable file
27 lines
987 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=git
|
|
version=2.33.0
|
|
useconfigure="true"
|
|
files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz bf3c6ab5f82e072aad4768f647cfb1ef60aece39855f83f080f9c0222dd20c4f"
|
|
auth_type=sha256
|
|
configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--with-lib=${SERENITY_INSTALL_ROOT}/usr/local" "CFLAGS=-DNO_IPV6" "LDFLAGS=-L${SERENITY_INSTALL_ROOT}/usr/local/lib")
|
|
depends=("zlib" "curl")
|
|
|
|
build() {
|
|
run make "${makeopts[@]}" CURL_LDFLAGS="-lcurl -lssl -lcrypto -lz"
|
|
run make strip
|
|
}
|
|
|
|
post_install() {
|
|
run mkdir -p "${SERENITY_INSTALL_ROOT}/home/anon"
|
|
run cp "../default_gitconfig" "${SERENITY_INSTALL_ROOT}/home/anon/.gitconfig"
|
|
}
|
|
|
|
export NO_PERL=YesPlease
|
|
export NO_PYTHON=YesPlease
|
|
export NO_EXPAT=YesPlease
|
|
export NO_TCLTK=YesPlease
|
|
export ac_cv_fread_reads_directories=no
|
|
export ac_cv_snprintf_returns_bogus=no
|
|
export ac_cv_iconv_omits_bom=no
|
|
export ac_cv_lib_curl_curl_global_init=yes
|