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

Makefile - github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c40afd3baa587f5df4e83ce5f7ef72f0931de74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
VERSION=1.0.0

.PHONY: dist
dist: owncloud-ccs.spec
	rm -rf owncloud-ccs-$(VERSION)
	mkdir owncloud-ccs-$(VERSION)
	cp -ra  *.php assets controller img l10n appinfo css js lib templates owncloud-ccs-$(VERSION)
	tar cfz owncloud-ccs-$(VERSION).tar.gz owncloud-ccs-$(VERSION)
	rm -rf owncloud-ccs-$(VERSION)

owncloud-ccs.spec: owncloud-ccs.spec.in Makefile
	sed -e 's/@PACKAGE_VERSION@/$(VERSION)/g' <owncloud-ccs.spec.in >owncloud-ccs.spec