diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 08:00:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 08:00:08 +0000 |
commit | 33b529514196b7992e38c77be3c1fb989bd039ad (patch) | |
tree | 7af3cb8e362ae252db5ae260f0566c0bf4b6a5ef /debian/rules | |
parent | Adding upstream version 4.7. (diff) | |
download | eas4tbsync-33b529514196b7992e38c77be3c1fb989bd039ad.tar.xz eas4tbsync-33b529514196b7992e38c77be3c1fb989bd039ad.zip |
Adding debian version 4.7-1.debian/4.7-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..165f866 --- /dev/null +++ b/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +#export DH_OPTIONS=-v + +EAS4TBSYNC_FILES = \ + _locales \ + content \ + skin \ + background.js \ + manifest.json \ + $(NULL) + +EAS4TBSYNC_FILES_EXCLUDE = \ + _locales/Readme.txt \ + content/timezonedata/README \ + $(NULL) + +%: + dh $@ + +override_dh_clean: + dh_clean + rm -rf debian/build + +override_dh_auto_build-indep: + mkdir $(CURDIR)/debian/build && \ + zip --recurse-paths $(CURDIR)/debian/build/eas4tbsync@jobisoft.de.xpi \ + $(EAS4TBSYNC_FILES) \ + --exclude $(EAS4TBSYNC_FILES_EXCLUDE) + dh_auto_build |