# SPDX-FileCopyrightText: Bernhard Posselt # SPDX-License-Identifier: AGPL-3.0-or-later # Generic Makefile for building and packaging a Nextcloud app which uses npm and # Composer. # # Dependencies: # * make # * which # * curl: used if phpunit and composer are not installed to fetch them from the web # * tar: for building the archive # * npm: for building and testing everything JS # # If no composer.json is in the app root directory, the Composer step # will be skipped. The same goes for the package.json which can be located in # the app root or the js/ directory. # # The npm command by launches the npm build script: # # npm run build # # The npm test command launches the npm test script: # # npm run test # # The idea behind this is to be completely testing and build tool agnostic. All # build tools and additional package managers should be installed locally in # your project, since this won't pollute people's global namespace. # # The following npm scripts in your package.json install and update the bower # and npm dependencies and use gulp as build system (notice how everything is # run from the node_modules folder): # # "scripts": { # "test": "node node_modules/gulp-cli/bin/gulp.js karma", # "prebuild": "npm install && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update", # "build": "node node_modules/gulp-cli/bin/gulp.js" # }, app_name=$(notdir $(CURDIR)) build_tools_directory=$(CURDIR)/build/tools source_build_directory=$(CURDIR)/build/artifacts/source sign_dir=$(CURDIR)/build/artifacts/sign cert_dir=$(HOME)/.nextcloud/certificates source_package_name=$(source_build_directory)/$(app_name) appstore_build_directory=$(CURDIR)/build/artifacts/appstore appstore_package_name=$(appstore_build_directory)/$(app_name) npm=$(shell which npm 2> /dev/null) composer=$(shell which composer 2> /dev/null) all: main static build whisper.cpp: git clone https://github.com/ggerganov/whisper.cpp.git whisper.cpp/models/ggml-large.bin: whisper.cpp bash whisper.cpp/models/download-ggml-model.sh large models/large: whisper.cpp/models/ggml-large.bin cp whisper.cpp/models/ggml-large.bin models/large whisper.cpp/models/ggml-medium.bin: whisper.cpp bash whisper.cpp/models/download-ggml-model.sh medium models/medium: whisper.cpp/models/ggml-medium.bin cp whisper.cpp/models/ggml-medium.bin models/medium whisper.cpp/models/ggml-small.bin: whisper.cpp bash whisper.cpp/models/download-ggml-model.sh small models/small: whisper.cpp/models/ggml-small.bin cp whisper.cpp/models/ggml-small.bin models/small main: whisper.cpp cd whisper.cpp && make clean && make cp whisper.cpp/main bin/main # due to the issues with libnss static linking on glibc, use a musl system static: whisper.cpp cd whisper.cpp && make clean && \ CC="gcc -static" CXX="g++ -static -latomic" LDFLAGS="-lstdc++ -lc -lm" make cp whisper.cpp/main bin/main # Fetches the PHP and JS dependencies and compiles the JS. If no composer.json # is present, the composer step is skipped, if no package.json or js/package.json # is present, the npm step is skipped .PHONY: build build: ifneq (,$(wildcard $(CURDIR)/composer.json)) make composer endif ifneq (,$(wildcard $(CURDIR)/package.json)) make npm endif ifneq (,$(wildcard $(CURDIR)/js/package.json)) make npm endif # Installs and updates the composer dependencies. If composer is not installed # a copy is fetched from the web .PHONY: composer composer: ifeq (, $(composer)) @echo "No composer command available, downloading a copy from the web" mkdir -p $(build_tools_directory) curl -sS https://getcomposer.org/installer | php mv composer.phar $(build_tools_directory) php $(build_tools_directory)/composer.phar install --prefer-dist else composer install --prefer-dist endif # Installs npm dependencies .PHONY: npm npm: ifeq (,$(wildcard $(CURDIR)/package.json)) cd js && $(npm) run build else npm ci npm run build endif .PHONY: pack-models pack-models: cd models; \ $(foreach lang,$(LANGS),tar cvzf $(lang).tar.gz $(lang);) # Removes the appstore build .PHONY: clean clean: rm -rf ./build # Same as clean but also removes dependencies installed by composer, bower and # npm .PHONY: distclean distclean: clean rm -rf vendor rm -rf node_modules rm -rf js/vendor rm -rf js/node_modules # Builds the source and appstore package .PHONY: dist dist: make source make appstore # Builds the source package .PHONY: source source: rm -rf $(source_build_directory) mkdir -p $(source_build_directory) tar cvzf $(source_package_name).tar.gz ../$(app_name) \ --exclude-vcs \ --exclude="../$(app_name)/build" \ --exclude="../$(app_name)/js/node_modules" \ --exclude="../$(app_name)/node_modules" \ --exclude="../$(app_name)/*.log" \ --exclude="../$(app_name)/js/*.log" \ # Builds the source package for the app store, ignores php and js tests .PHONY: appstore appstore: rm -rf $(sign_dir) mkdir -p $(sign_dir) rm -rf $(appstore_build_directory) mkdir -p $(appstore_build_directory) npm install --omit dev rsync -a --delete \ --include=/CHANGELOG.md \ --include=/README.md \ --include=/node_modules \ --include=/package.json \ --include=/package-lock.json \ --include=/composer.json \ --include=/composer.lock \ --include=/src \ --include=/lib \ --include=/l10n \ --include=/img \ --include=/appinfo \ --include=/bin \ --include=/vendor \ --include=/templates \ --include=/js \ --include=/node_modules \ --include=/models \ --exclude=/models/** \ --exclude=**/*.map \ --exclude=/* \ $(CURDIR)/ $(sign_dir)/$(app_name) tar -czf $(appstore_package_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 $(appstore_package_name).tar.gz | openssl base64; \ fi .PHONY: test test: composer $(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.xml $(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml