forked from nextcloud/recognize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
101 lines (81 loc) · 1.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
app_name=recognize
project_dir=$(CURDIR)/../$(app_name)
build_dir=$(CURDIR)/build/artifacts
appstore_dir=$(build_dir)/appstore
source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
version+=3.2.2
all: dev-setup build-js-production
release: remove-devdeps remove-binaries appstore
# Dev env management
dev-setup: clean clean-dev npm-init composer-install install-binaries
npm-init:
npm ci
npm-update:
npm update
composer-install:
composer install
install-binaries:
mkdir -p bin
# Building
build-js:
npm run dev
build-js-production:
npm run build
remove-binaries:
# make it download appropriate tf binaries
rm -rf node_modules/@tensorflow/tfjs-node/deps/lib/*
rm -rf node_modules/@tensorflow/tfjs-node/lib/*
remove-devdeps:
rm -rf node_modules
npm install --omit dev
watch-js:
npm run watch
# Linting
lint:
npm run lint
lint-fix:
npm run lint:fix
# Style linting
stylelint:
npm run stylelint
stylelint-fix:
npm run stylelint:fix
# Cleaning
clean:
rm -rf js
rm -rf $(sign_dir)
clean-dev:
rm -rf node_modules
appstore:
composer install --no-dev
mkdir -p $(sign_dir)
rsync -a --delete \
--include=/vendor \
--include=/CHANGELOG.md \
--include=/README.md \
--include=/composer.json \
--include=/composer.lock \
--include=/vendor \
--include=/templates \
--include=/node_modules \
--include=/package.json \
--include=/package-lock.json \
--include=/src \
--include=/js \
--include=/lib \
--include=/img \
--include=/appinfo \
--include=/bin \
--exclude=**/*.map \
--exclude=/* \
--exclude=node \
$(project_dir)/ $(sign_dir)/$(app_name)
tar -czf $(build_dir)/$(app_name)-$(version).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)-$(version).tar.gz | openssl base64; \
fi