mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
'make' (or 'make all', if one is interested in the apidoc) should now do everything needed to run from a git checkout. At the same time, it no longer rebuilds all translations (xgettext run etc.). This can be done with 'make translations'.
19 lines
401 B
Makefile
Executable File
19 lines
401 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p')
|
|
|
|
get-orig-source:
|
|
make clean
|
|
tar cJf ../davical_$(VERSION).orig.tar.xz --exclude-vcs --exclude=.gitattributes --exclude=debian .
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
make all
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs ChangeLog
|
|
rm debian/davical/usr/share/davical/htdocs/.htaccess || true
|
|
|