-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgit-openssl.sh
executable file
·45 lines (38 loc) · 968 Bytes
/
git-openssl.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
function installDep()
{
sudo apt-get install -y build-essential fakeroot dpkg-dev
sudo apt-get -y build-dep git
sudo apt-get install -y libcurl4-openssl-dev
}
function compileGit()
{
mkdir -p git-openssl
cd git-openssl
apt-get source git
cd git-*
sed -i -e 's/libcurl4-gnutls-dev/libcurl4-openssl-dev/g' ./debian/control
sed -i -- '/TEST\s*=\s*test/d' ./debian/rules
sudo dpkg-buildpackage -rfakeroot -b
find .. -type f -name "git_*ubuntu*.deb" -exec sudo dpkg -i \{\} \;
cd ../../
}
function cleanUp()
{
mkdir -p ../gitopenssl_deb
pushd git-openssl
# copy the package for future use
find .. -type f -name "git_*ubuntu*.deb" -exec cp {} ../../gitopenssl_deb \;
popd
# Cleanup the compilation env
sudo rm -rf git-openssl
}
#Main
#dep install
installDep
# compile git with openssl
compileGit
# Put git on hold from software update
sudo apt-mark hold git
# cleanUp
cleanUp