-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
60 lines (50 loc) · 1.47 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
# This file is licensed under the Affero General Public License version 3 or
# later. See the LICENSE file.
app_name=talked
build_directory=$(CURDIR)/build
sign_directory=$(build_directory)/sign
cert_directory=$(HOME)/.nextcloud/certificates
all: dev-setup prettier stylelint
dev-setup: npm-init
npm-init:
npm ci
prettier:
npm run prettier
prettier-fix:
npm run prettier:fix
stylelint:
npm run stylelint
stylelint-fix:
npm run stylelint:fix
appstore:
rm -rf $(build_directory)
mkdir -p $(sign_directory)
rsync -a \
--exclude=".git" \
--exclude=".github" \
--exclude=".vscode" \
--exclude="node_modules" \
--exclude="build" \
--exclude="vendor" \
--exclude=".editorconfig" \
--exclude=".gitignore" \
--exclude=".php_cs.dist" \
--exclude=".prettierrc" \
--exclude=".stylelintrc.json" \
--exclude="composer.json" \
--exclude="composer.lock" \
--exclude="Makefile" \
--exclude="package-lock.json" \
--exclude="package.json" \
../$(app_name)/ $(sign_directory)/$(app_name)
@if [ -f $(cert_directory)/$(app_name).key ]; then \
echo "Signing app files…"; \
php ../occ integrity:sign-app \
--privateKey=$(cert_directory)/$(app_name).key\
--certificate=$(cert_directory)/$(app_name).crt\
--path=$(sign_directory)/$(app_name); \
fi
tar czf $(build_directory)/$(app_name).tar.gz \
-C $(sign_directory) $(app_name)
sign-package:
openssl dgst -sha512 -sign $(cert_directory)/$(app_name).key $(build_directory)/$(app_name).tar.gz | openssl base64;