diff options
author | EWouters <6179932+EWouters@users.noreply.github.com> | 2022-06-03 15:17:18 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 11:40:31 +0100 |
commit | 810f363fc0903c0a11aecd63e95775a83e5471f3 (patch) | |
tree | 4cbda02e8ab0728686a151c0da18368c86491fd5 /Ports/git | |
parent | dea9eff3cd6c38738276bc1fb53afba42de0f69e (diff) | |
download | serenity-810f363fc0903c0a11aecd63e95775a83e5471f3.zip |
Ports/git: Update git to version 2.36.1
Diffstat (limited to 'Ports/git')
-rwxr-xr-x | Ports/git/package.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Ports/git/package.sh b/Ports/git/package.sh index ffce1f65b1..ece9a8dfe4 100755 --- a/Ports/git/package.sh +++ b/Ports/git/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh -port=git -version=2.36.0 -useconfigure="true" -files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz af5ebfc1658464f5d0d45a2bfd884c935fb607a10cc021d95bc80778861cc1d3" -auth_type=sha256 +port='git' +version='2.36.1' +files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz 405d4a0ff6e818d1f12b3e92e1ac060f612adcb454f6299f70583058cb508370" +auth_type='sha256' +useconfigure='true' 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") @@ -14,7 +14,7 @@ build() { post_install() { run mkdir -p "${SERENITY_INSTALL_ROOT}/home/anon" - run cp "../default_gitconfig" "${SERENITY_INSTALL_ROOT}/home/anon/.gitconfig" + run_nocd cp default_gitconfig "${SERENITY_INSTALL_ROOT}/home/anon/.gitconfig" } export NO_PERL=YesPlease |