-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
64 lines (56 loc) · 2.45 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
# SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
# Makefile for building the project
app_name=talk_matterbridge
matterbridge_version=1.26.0
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+=master
all: binaries appstore
release: binaries appstore create-tag
.PHONY: binaries
binaries:
rm -rf "$(project_dir)/bin"
mkdir -p "$(project_dir)/bin"
curl -L --output "$(project_dir)/bin/matterbridge-$(matterbridge_version)-linux-32bit" "https://github.com/42wim/matterbridge/releases/download/v$(matterbridge_version)/matterbridge-$(matterbridge_version)-linux-32bit"
chmod +x "$(project_dir)/bin/matterbridge-$(matterbridge_version)-linux-32bit"
curl -L --output "$(project_dir)/bin/matterbridge-$(matterbridge_version)-linux-64bit" "https://github.com/42wim/matterbridge/releases/download/v$(matterbridge_version)/matterbridge-$(matterbridge_version)-linux-64bit"
chmod +x "$(project_dir)/bin/matterbridge-$(matterbridge_version)-linux-64bit"
curl -L --output "$(project_dir)/bin/matterbridge-$(matterbridge_version)-linux-arm64" "https://github.com/42wim/matterbridge/releases/download/v$(matterbridge_version)/matterbridge-$(matterbridge_version)-linux-arm64"
chmod +x "$(project_dir)/bin/matterbridge-$(matterbridge_version)-linux-arm64"
create-tag:
git tag -a v$(version) -m "Tagging the $(version) release."
git push origin v$(version)
appstore:
rm -rf $(build_dir)
mkdir -p $(sign_dir)
rsync -a \
--exclude=.git \
--exclude=.github \
--exclude=.gitignore \
--exclude=.nextcloudignore \
--exclude=/build \
--exclude=/composer.json \
--exclude=/composer.json.license \
--exclude=Makefile \
--exclude=krankerl.toml \
--exclude=README.md \
$(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)-$(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