mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
492f7132d2
- Replaced /Root with - Improved documentation. - Removed a few typos. - Replaced with - Added brackets in some cases. Most of the changes were reviewed and applied manually.
23 lines
665 B
Bash
Executable file
23 lines
665 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=git
|
|
version=2.31.1
|
|
useconfigure="true"
|
|
files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz 51bd18a1af964dd3b1c7b0220889ebb6"
|
|
auth_type=md5
|
|
configopts="--target=${SERENITY_ARCH}-pc-serenity CFLAGS=-DNO_IPV6"
|
|
depends="zlib"
|
|
|
|
build() {
|
|
run make $makeopts
|
|
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_OPENSSL=1
|
|
export ac_cv_fread_reads_directories=no
|
|
export ac_cv_snprintf_returns_bogus=no
|
|
export ac_cv_iconv_omits_bom=no
|