-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathMakefile
62 lines (57 loc) · 2.16 KB
/
Makefile
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
app_name=documentserver_community
project_dir=$(CURDIR)/../$(app_name)
build_dir=$(project_dir)/build
appstore_dir=$(build_dir)/appstore
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
all: 3rdparty/onlyoffice/documentserver version
clean:
rm -rf 3rdparty/onlyoffice
rm -rf build
3rdparty/onlyoffice/documentserver:
mkdir -p 3rdparty/onlyoffice
docker create --name oo-extract onlyoffice/documentserver:5.4.2.46
docker cp oo-extract:/var/www/onlyoffice/documentserver 3rdparty/onlyoffice
docker rm oo-extract
rm -r 3rdparty/onlyoffice/documentserver/server/{SpellChecker,Common,DocService}
cd 3rdparty/onlyoffice/documentserver/server/FileConverter/bin && \
../../tools/allfontsgen \
--input="../../../core-fonts" \
--allfonts-web="../../../sdkjs/common/AllFonts.js" \
--allfonts="AllFonts.js" \
--images="../../../sdkjs/common/Images" \
--output-web="../../../fonts" \
--selection="font_selection.bin"
sed -i 's/if(yb===d\[a\].ka)/if(d[a]\&\&yb===d[a].ka)/' 3rdparty/onlyoffice/documentserver/sdkjs/*/sdk-all.js
version:
VERSION=$$(grep -ozP "DocsAPI\.DocEditor\.version\s*=\s*function\(\) *\{\n\s+return\s\'\K(\d+.\d+.\d+)" 3rdparty/onlyoffice/documentserver/web-apps/apps/api/documents/api.js) ;\
sed -i "s/return '[0-9.]*'/return '$$VERSION'/" lib/OnlyOffice/WebVersion.php
appstore: clean 3rdparty/onlyoffice/documentserver version
mkdir -p $(sign_dir)
rsync -a \
--exclude=/docs \
--exclude=/build/sign \
--exclude=/translationfiles \
--exclude=/.tx \
--exclude=/tests \
--exclude=/.git \
--exclude=/.github \
--exclude=/l10n/l10n.pl \
--exclude=/CONTRIBUTING.md \
--exclude=/issue_template.md \
--exclude=/README.md \
--exclude=/screenshots \
--exclude=/node_modules \
--exclude=/.gitattributes \
--exclude=/.gitignore \
--exclude=/.scrutinizer.yml \
--exclude=/.travis.yml \
--exclude=/Makefile \
$(project_dir)/ $(sign_dir)/$(app_name)
tar -czf $(build_dir)/$(app_name).tar.gz \
-C $(sign_dir) $(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing package…"; \
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64; \
fi