Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/nextcloud/spreed-screensharing-firefox-addon.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b5682b0ef4bde91f531fecde691057ec76342f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SRC := ./extension
DIST := ./dist
ZIP := $(shell which zip)

PACKAGE_NAME := nextcloud-video-calls-screensharing
PACKAGE_VERSION := $(shell  echo `sed -rn -e 's/<em:version>(.*)<\/em:version>/\1/p' $(SRC)/install.rdf` | sed -rn -e 's/^ *//p')

build:
	rm -rf $(DIST); \
	mkdir -p $(DIST); \
	cd $(SRC); \
	find . -type f -print | $(ZIP) ../$(DIST)/$(PACKAGE_NAME)-$(PACKAGE_VERSION).xpi -@