aboutsummaryrefslogtreecommitdiff
path: root/personal/git/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-08-16 16:08:04 +0300
committerCem Keylan <cem@ckyln.com>2020-08-16 16:08:04 +0300
commite19e7e9b03bfb5dc1a86091271e28968721ef7ac (patch)
tree36325deec5fddab8d57b589b660c4e2ccb394615 /personal/git/build
parentff38cfc603ee10413c240c5b75807266b8b56512 (diff)
downloadrepository-e19e7e9b03bfb5dc1a86091271e28968721ef7ac.tar.gz
git: drop from repository (I have stopped using git-send-email, and switched to sending with msmtp)
Diffstat (limited to 'personal/git/build')
-rwxr-xr-xpersonal/git/build67
1 files changed, 0 insertions, 67 deletions
diff --git a/personal/git/build b/personal/git/build
deleted file mode 100755
index 5d55ca3..0000000
--- a/personal/git/build
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/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 {} +
-)
-
-cd git
-
-# export CFLAGS="$CFLAGS -fPIC"
-# export LDFLAGS="$LDFLAGS -static"
-
-cat > config.mak <<EOF
-NO_GETTEXT=YesPlease
-NO_SVN_TESTS=YesPlease
-NO_TCLTK=YesPlease
-NO_EXPAT=YesPlease
-NO_NSEC=YesPlease
-NO_PYTHON=YesPlease
-NO_SYS_POLL_H=1
-NO_CROSS_DIRECTORY_HARDLINKS=1
-NO_INSTALL_HARDLINKS=1
-EOF
-
-./configure \
- --prefix=/usr \
- --with-curl \
- ac_cv_snprintf_returns_bogus=no \
- ac_cv_fread_reads_directories=yes
-
-make
-make DESTDIR="$1" install
-
-mv man/* "$1/usr/share/man"