Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
25c29936
Commit
25c29936
authored
Jan 13, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linux: remove shell script used for building and fetching
parent
45c551aa
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
404 deletions
+0
-404
Common/3dParty/boost/build.sh
Common/3dParty/boost/build.sh
+0
-53
Common/3dParty/boost/fetch.sh
Common/3dParty/boost/fetch.sh
+0
-43
Common/3dParty/cef/build.sh
Common/3dParty/cef/build.sh
+0
-3
Common/3dParty/cef/fetch.sh
Common/3dParty/cef/fetch.sh
+0
-56
Common/3dParty/cryptopp/build.sh
Common/3dParty/cryptopp/build.sh
+0
-7
Common/3dParty/curl/fetch.sh
Common/3dParty/curl/fetch.sh
+0
-8
Common/3dParty/icu/build.sh
Common/3dParty/icu/build.sh
+0
-3
Common/3dParty/icu/fetch.sh
Common/3dParty/icu/fetch.sh
+0
-76
Common/3dParty/make.sh
Common/3dParty/make.sh
+0
-23
Common/3dParty/openssl/build.sh
Common/3dParty/openssl/build.sh
+0
-34
Common/3dParty/openssl/fetch.sh
Common/3dParty/openssl/fetch.sh
+0
-8
Common/3dParty/v8/build.sh
Common/3dParty/v8/build.sh
+0
-70
Common/3dParty/v8/fetch.sh
Common/3dParty/v8/fetch.sh
+0
-20
No files found.
Common/3dParty/boost/build.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
os
=
$(
uname
-s
)
platform
=
""
case
"
$os
"
in
Linux
*
)
platform
=
"linux"
;;
Darwin
*
)
platform
=
"mac"
;;
*
)
exit
;;
esac
architecture
=
$(
uname
-m
)
arch
=
""
case
"
$architecture
"
in
x86_64
*
)
arch
=
"_64"
;;
*
)
arch
=
"_32"
;;
esac
outputdir
=
"
$SCRIPTPATH
/boost_1_58_0/build/
$platform$arch
"
echo
$outputdir
cd
"
$SCRIPTPATH
/boost_1_58_0"
folder
=
"build/
$platform$arch
"
if
[
!
-d
$folder
]
;
then
./bootstrap.sh
--with-libraries
=
filesystem,system,date_time,regex
stage
=
"stage"
if
[
-d
$stage
]
;
then
rm
-R
$stage
fi
mkdir
-p
"
$folder
"
mkdir
-p
"
$folder
/static"
mkdir
-p
"
$folder
/static_fpic"
mkdir
-p
"
$folder
/shared"
./b2
--clean
./bjam
link
=
static
cp
stage/lib/
*
"
$folder
/static/"
./b2
--clean
./bjam
link
=
static
cxxflags
=
-fPIC
cp
stage/lib/
*
"
$folder
/static_fpic/"
./b2
--clean
./bjam
link
=
shared
cp
stage/lib/
*
"
$folder
/shared/"
fi
Common/3dParty/boost/fetch.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
os
=
$(
uname
-s
)
platform
=
""
case
"
$os
"
in
Linux
*
)
platform
=
"linux"
;;
Darwin
*
)
platform
=
"mac"
;;
*
)
exit
;;
esac
if
[[
"
$platform
"
==
*
"mac"
*
]]
then
if
[[
-f
"
$SCRIPTPATH
/7zX_1.7.1.dmg"
]]
then
echo
"7z already downloaded"
else
wget http://static.updatestar.net/dl/7zX/7zX_1.7.1.dmg
fi
fi
if
[[
-f
"
$SCRIPTPATH
/boost_1_58_0.7z"
]]
then
echo
"boost already downloaded"
else
wget http://freefr.dl.sourceforge.net/project/boost/boost/1.58.0/boost_1_58_0.7z
fi
if
[
-d
"
$SCRIPTPATH
/boost_1_58_0"
]
;
then
echo
"boost already extracted"
else
if
[[
"
$platform
"
==
*
"linux"
*
]]
then
7z x
-y
"
$SCRIPTPATH
/boost_1_58_0.7z"
-o
"
$SCRIPTPATH
/"
else
hdiutil mount
"
$SCRIPTPATH
/7zX_1.7.1.dmg"
/Volumes/7zX/7zX.app/Contents/Resources/7za x
"
$SCRIPTPATH
/boost_1_58_0.7z"
-o
"
$SCRIPTPATH
/"
hdiutil unmount /Volumes/7zX
fi
fi
Common/3dParty/cef/build.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
echo
"build: OK!"
Common/3dParty/cef/fetch.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
os
=
$(
uname
-s
)
platform
=
""
case
"
$os
"
in
Linux
*
)
platform
=
"linux"
;;
Darwin
*
)
platform
=
"mac"
;;
*
)
exit
;;
esac
architecture
=
$(
uname
-m
)
arch
=
""
case
"
$architecture
"
in
x86_64
*
)
arch
=
"_64"
;;
*
)
arch
=
"_32"
;;
esac
if
[[
-d
"
$SCRIPTPATH
/
$platform$arch
"
]]
then
echo
else
mkdir
"
$SCRIPTPATH
/
$platform$arch
"
fi
cd
"
$SCRIPTPATH
/
$platform$arch
"
if
[
-d
"build"
]
then
echo
""
else
mkdir
"build"
fi
if
[[
"
$platform
"
==
*
"linux"
*
]]
then
if
[[
-f
"cef_binary.7z"
]]
then
echo
"cef_binary already downloaded"
else
wget http://d2ettrnqo7v976.cloudfront.net/cef/2454/
$platform$arch
/cef_binary.7z
fi
if
[
-d
cef_binary
]
then
echo
"cef_binary already extracted"
else
7z x
-y
cef_binary.7z
fi
cp
-r
-t
build/ ./cef_binary/Release/
*
./cef_binary/Resources/
*
chmod
a+xr build/locales
fi
Common/3dParty/cryptopp/build.sh
deleted
100644 → 0
View file @
45c551aa
#!/bin/bash
BUILD_DIR
=
project/cryptopp.build
mkdir
-p
$BUILD_DIR
cd
$BUILD_DIR
qmake ../cryptopp.pro
make
&&
echo
"build: OK!"
Common/3dParty/curl/fetch.sh
deleted
100755 → 0
View file @
45c551aa
CURL_FOLDER
=
curl
if
[
!
-d
${
CURL_FOLDER
}
]
;
then
git clone https://github.com/curl/curl.git
${
CURL_FOLDER
}
fi
cd
${
CURL_FOLDER
}
git fetch
git checkout curl-7_54_1
cd
..
Common/3dParty/icu/build.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
echo
"build: OK!"
Common/3dParty/icu/fetch.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
os
=
$(
uname
-s
)
platform
=
""
case
"
$os
"
in
Linux
*
)
platform
=
"linux"
;;
Darwin
*
)
platform
=
"mac"
;;
*
)
exit
;;
esac
architecture
=
$(
uname
-m
)
arch
=
""
case
"
$architecture
"
in
x86_64
*
)
arch
=
"_64"
;;
*
)
arch
=
"_32"
;;
esac
if
[[
-d
"
$SCRIPTPATH
/
$platform$arch
"
]]
then
echo
else
mkdir
"
$SCRIPTPATH
/
$platform$arch
"
fi
cd
"
$SCRIPTPATH
/
$platform$arch
"
if
[
-d
"build"
]
then
echo
""
else
mkdir
"build"
fi
if
[[
"
$platform
"
==
*
"linux"
*
]]
then
if
[[
-f
"./icu.zip"
]]
then
echo
"icu already downloaded"
else
if
[[
"
$arch
"
==
*
"_64"
*
]]
then
wget
-O
icu.zip http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-RHEL6-x64.tgz
else
wget
-O
icu.zip http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-RHEL6-i386.tgz
fi
fi
if
[
-d
"./icu"
]
then
echo
"icu already extracted"
else
7z x
-so
"./icu.zip"
|
tar
xf -
fi
cp
"./usr/local/lib/libicudata.so.55.1"
"build/libicudata.so.55"
cp
"./usr/local/lib/libicuuc.so.55.1"
"build/libicuuc.so.55"
fi
if
[[
"
$platform
"
==
*
"mac"
*
]]
then
if
[
-d
"./icu"
]
then
echo
"icu already extracted"
else
svn
export
http://source.icu-project.org/repos/icu/icu/tags/release-55-1 ./icu
fi
cd
./icu/source/
./runConfigureICU MacOSX
make
cd
../../
cp
"./icu/source/lib/libicudata.55.1.dylib"
"build/llibicudata.55.1.dylib"
cp
"./icu/source/lib/libicuuc.55.1.dylib"
"build/libicuuc.55.1.dylib"
fi
Common/3dParty/make.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
cd
"
$SCRIPTPATH
"
for
d
in
*
/
;
do
echo
"
$d
"
cd
"
$SCRIPTPATH
/
$d
"
if
[
-f
"fetch.sh"
]
then
bash
"fetch.sh"
fi
if
[
-f
"build.sh"
]
then
bash
"build.sh"
fi
cd
"
$SCRIPTPATH
"
done
Common/3dParty/openssl/build.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
cd
"
$SCRIPTPATH
"
/openssl
os
=
$(
uname
-s
)
platform
=
""
case
"
$os
"
in
Linux
*
)
platform
=
"linux"
;;
Darwin
*
)
platform
=
"darwin64-x86_64-cc"
;;
*
)
exit
;;
esac
platformLinux
=
""
architecture
=
$(
uname
-m
)
arch
=
""
if
[[
"
$platform
"
==
"linux"
]]
then
case
"
$architecture
"
in
x86_64
*
)
arch
=
"-64"
;;
*
)
arch
=
"-32"
;;
esac
fi
echo
"
$platform$arch
"
perl ./Configure
$platform$arch
./config
make
Common/3dParty/openssl/fetch.sh
deleted
100755 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
cd
"
$SCRIPTPATH
"
git clone https://github.com/openssl/openssl.git
Common/3dParty/v8/build.sh
deleted
100644 → 0
View file @
45c551aa
#!/bin/bash
export
PATH
=
`
pwd
`
/depot_tools:
"
$PATH
"
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
os
=
$(
uname
-s
)
platform
=
""
case
"
$os
"
in
Linux
*
)
platform
=
"linux"
;;
Darwin
*
)
platform
=
"mac"
;;
*
)
exit
;;
esac
architecture
=
$(
uname
-m
)
arch
=
""
case
"
$architecture
"
in
x86_64
*
)
arch
=
"_64"
;;
*
)
arch
=
"_32"
;;
esac
if
[[
-d
"
$SCRIPTPATH
/
$platform$arch
"
]]
then
echo
else
mkdir
"
$SCRIPTPATH
/
$platform$arch
"
fi
cd
"
$SCRIPTPATH
/v8"
if
[[
"
$platform
"
==
*
"linux"
*
]]
then
CFLAGS
=
"-fPIC"
CXXFLAGS
=
"-fPIC"
make native
-j
$(
grep
-c
^processor /proc/cpuinfo
)
GYPFLAGS
=
-Dclang
=
0
cp
"./out/native/obj.target/tools/gyp/libv8_base.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/tools/gyp/libv8_libbase.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/tools/gyp/libv8_libplatform.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/tools/gyp/libv8_nosnapshot.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/tools/gyp/libv8_external_snapshot.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/third_party/icu/libicui18n.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/third_party/icu/libicuuc.a"
"./../
$platform$arch
/"
cp
"./out/native/obj.target/third_party/icu/libicudata.a"
"./../
$platform$arch
/"
cp
"./third_party/icu/linux/icudtl_dat.S"
"./../
$platform$arch
/"
cp
"./third_party/icu/source/data/in/icudtl.dat"
"./../
$platform$arch
/"
fi
if
[[
"
$platform
"
==
*
"mac"
*
]]
then
CFLAGS
=
"-fPIC"
CXXFLAGS
=
"-fPIC -stdlib=libc++"
LDFLAGS
=
"-stdlib=libc++"
make native
cp
"./out/native/libv8_base.a"
"./../
$platform$arch
/"
cp
"./out/native/libv8_libbase.a"
"./../
$platform$arch
/"
cp
"./out/native/libv8_libplatform.a"
"./../
$platform$arch
/"
cp
"./out/native/libv8_nosnapshot.a"
"./../
$platform$arch
/"
cp
"./out/native/libv8_external_snapshot.a"
"./../
$platform$arch
/"
cp
"./out/native/libicui18n.a"
"./../
$platform$arch
/"
cp
"./out/native/libicuuc.a"
"./../
$platform$arch
/"
cp
"./out/native/icudtl.dat"
"./../
$platform$arch
/"
cp
"./out/native/libv8_libsampler.a"
"./../
$platform$arch
/"
cp
"./third_party/icu/mac/icudtl_dat.S"
"./../
$platform$arch
/"
fi
Common/3dParty/v8/fetch.sh
deleted
100644 → 0
View file @
45c551aa
#!/bin/bash
SCRIPT
=
$(
readlink
-f
"
$0
"
)
SCRIPTPATH
=
$(
dirname
"
$SCRIPT
"
)
cd
"
$SCRIPTPATH
"
if
[
!
-d
"depot_tools"
]
then
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
fi
export
PATH
=
`
pwd
`
/depot_tools:
"
$PATH
"
if
[
!
-d
"./v8"
]
then
fetch v8
fi
gclient
sync
-r
4.10.253
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment