From ca332550d27ebc2a881e557272b72a39bcf98177 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sun, 17 May 2020 02:29:38 +0300 Subject: git: add new package at 2.26.2 --- testing/git/build | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++ testing/git/checksums | 7 ++++++ testing/git/depends | 4 +++ testing/git/sources | 9 +++++++ testing/git/version | 1 + 5 files changed, 88 insertions(+) create mode 100755 testing/git/build create mode 100644 testing/git/checksums create mode 100644 testing/git/depends create mode 100644 testing/git/sources create mode 100644 testing/git/version (limited to 'testing') diff --git a/testing/git/build b/testing/git/build new file mode 100755 index 00000000..419432e1 --- /dev/null +++ b/testing/git/build @@ -0,0 +1,67 @@ +#!/bin/sh -e +# Git build with git-send-email perl garbage enabled :c + +( + cd ssleay + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make + make DESTDIR="$1" install +) + +( + cd uri + perl Makefile.PL INSTALLDIRS=vendor + make + make DESTDIR="$1" install +) + +( + cd socket-ssl + yes | perl Makefile.PL INSTALLDIRS=vendor + make + make DESTDIR="$1" install +) + +( + cd sasl + PERL_USE_UNSAFE_INC=1 \ + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make + make pure_install DESTDIR="$1" +) + +( + cd ssl + perl Makefile.PL INSTALLDIRS=vendor + make + make DESTDIR="$1" install + find "$1" \( -name '.packlist' -o -name '*.pod' \) -exec rm -rf {} + +) + +export CFLAGS="$CFLAGS -fPIC" + +cat > config.mak <