aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cloud_federation_api
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2018-06-14 11:15:02 +0200
committerBjoern Schiessle <bjoern@schiessle.org>2018-07-02 11:29:31 +0200
commitcfb3e80d1bb549383d86ca795749d78c7eacfcf1 (patch)
tree867a81d30001ef2273fea2872aa3886c6b17ab56 /apps/cloud_federation_api
parent8d4da30bf59ca12a81f13ea93b7fdd6c84cb1c2b (diff)
downloadnextcloud-server-cfb3e80d1bb549383d86ca795749d78c7eacfcf1.tar.gz
nextcloud-server-cfb3e80d1bb549383d86ca795749d78c7eacfcf1.zip
remove the makefile
Diffstat (limited to 'apps/cloud_federation_api')
-rw-r--r--apps/cloud_federation_api/Makefile50
1 files changed, 0 insertions, 50 deletions
diff --git a/apps/cloud_federation_api/Makefile b/apps/cloud_federation_api/Makefile
deleted file mode 100644
index bfaffcb4b11..00000000000
--- a/apps/cloud_federation_api/Makefile
+++ /dev/null
@@ -1,50 +0,0 @@
-app_name=end_to_end_encryption
-
-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+=1.0.1
-
-all: appstore
-
-release: appstore create-tag
-
-create-tag:
- git tag -s -a v$(version) -m "Tagging the $(version) release."
- git push origin v$(version)
-
-clean:
- rm -rf $(build_dir)
- rm -rf node_modules
-
-appstore: clean
- mkdir -p $(sign_dir)
- rsync -a \
- --exclude=/build \
- --exclude=/docs \
- --exclude=/l10n/templates \
- --exclude=/l10n/.tx \
- --exclude=/tests \
- --exclude=/.git \
- --exclude=/.github \
- --exclude=/l10n/l10n.pl \
- --exclude=/CONTRIBUTING.md \
- --exclude=/issue_template.md \
- --exclude=/README.md \
- --exclude=/.gitattributes \
- --exclude=/.gitignore \
- --exclude=/.scrutinizer.yml \
- --exclude=/.drone.yml \
- --exclude=/.travis.yml \
- --exclude=/Makefile \
- $(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