forked from nextcloud/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
130 lines (114 loc) · 3.68 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Makefile for building the project
app_name=mail
project_dir=$(CURDIR)
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
docker_image=christophwurst/nextcloud-mail-test-docker
mail_pwd=mypassword
all: appstore
clean:
rm -rf $(build_dir)
rm -rf node_modules
composer.phar:
curl -sS https://getcomposer.org/installer | php
install-deps: install-composer-deps install-npm-deps-dev
install-composer-deps: composer.phar
php composer.phar install
install-npm-deps:
npm install --production
install-npm-deps-dev:
npm install --deps
optimize-js: install-npm-deps
./node_modules/webpack/bin/webpack.js --config js/webpack.config.js
dev-setup: install-composer-deps install-npm-deps-dev
start-imap-docker:
docker pull $(docker_image)
docker run --name="ncimaptest" -d \
-p 993:993 \
-e POSTFIX_HOSTNAME=mail.domain.tld $(docker_image)
start-smtp-docker:
docker pull catatnight/postfix
docker run --name="ncsmtptest" -d \
-e maildomain=domain.tld \
-e [email protected]:mypassword \
-p 2525:25 \
catatnight/postfix
add-imap-account:
docker exec -it ncimaptest /opt/bin/useradd $(mail_user) $(mail_pwd)
update-composer: composer.phar
rm -f composer.lock
php composer.phar install --prefer-dist
appstore: clean install-deps optimize-js
mkdir -p $(sign_dir)
rsync -a \
--exclude=bower.json \
--exclude=.bowerrc \
--exclude=/build \
--exclude=composer.json \
--exclude=composer.lock \
--exclude=composer.phar \
--exclude=CONTRIBUTING.md \
--exclude=coverage \
--exclude=.git \
--exclude=.gitattributes \
--exclude=.github \
--exclude=.gitignore \
--exclude=Gruntfile.js \
--exclude=issue_template.md \
--exclude=.jscsrc \
--exclude=.jshintignore \
--exclude=.jshintrc \
--exclude=js/tests \
--exclude=karma.conf.js \
--exclude=l10n/no-php \
--exclude=l10n/.tx \
--exclude=.lgtm \
--exclude=Makefile \
--exclude=nbproject \
--exclude=/node_modules \
--exclude=package.json \
--exclude=phpunit*xml \
--exclude=screenshots \
--exclude=.scrutinizer.yml \
--exclude=tests \
--exclude=.travis.yml \
--exclude=vendor/bin \
--exclude=vendor/ezyang/htmlpurifier/art \
--exclude=vendor/ezyang/htmlpurifier/benchmarks \
--exclude=vendor/ezyang/htmlpurifier/configdoc \
--exclude=vendor/ezyang/htmlpurifier/docs \
--exclude=vendor/ezyang/htmlpurifier/Doxyfile \
--exclude=vendor/ezyang/htmlpurifier/extras \
--exclude=vendor/ezyang/htmlpurifier/FOCUS \
--exclude=vendor/ezyang/htmlpurifier/.gitattributes \
--exclude=vendor/ezyang/htmlpurifier/INSTALL* \
--exclude=vendor/ezyang/htmlpurifier/maintenance \
--exclude=vendor/ezyang/htmlpurifier/NEWS \
--exclude=vendor/ezyang/htmlpurifier/phpdoc.ini \
--exclude=vendor/ezyang/htmlpurifier/plugins \
--exclude=vendor/ezyang/htmlpurifier/README \
--exclude=vendor/ezyang/htmlpurifier/smoketests \
--exclude=vendor/ezyang/htmlpurifier/tests \
--exclude=vendor/ezyang/htmlpurifier/TODO \
--exclude=vendor/ezyang/htmlpurifier/VERSION \
--exclude=vendor/ezyang/htmlpurifier/WHATSNEW \
--exclude=vendor/ezyang/htmlpurifier/WYSIWYG \
$(project_dir)/ $(sign_dir)/$(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing app files…"; \
php ../../occ integrity:sign-app \
--privateKey=$(cert_dir)/$(app_name).key\
--certificate=$(cert_dir)/$(app_name).crt\
--path=$(sign_dir)/$(app_name); \
fi
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