mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
15 lines
337 B
Makefile
Executable File
15 lines
337 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p')
|
|
|
|
get-orig-source:
|
|
tar cJf ../davical_$(VERSION).orig.tar.xz --exclude-vcs --exclude=.gitattributes .
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs ChangeLog
|
|
rm debian/davical/usr/share/davical/htdocs/.htaccess || true
|
|
|