diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 06:29:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 06:29:38 +0000 |
commit | eb0230adfa201914ee9c6e9746176d8f7839cd98 (patch) | |
tree | 7ae446b662d760cae2fbe9d8f4abed87615bbfa8 /debian/rules | |
parent | Adding upstream version 4.7. (diff) | |
download | tbsync-eb0230adfa201914ee9c6e9746176d8f7839cd98.tar.xz tbsync-eb0230adfa201914ee9c6e9746176d8f7839cd98.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 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..135dfcf --- /dev/null +++ b/debian/rules @@ -0,0 +1,30 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 +# export DH_OPTIONS=-v + +TBSYNC_FILES = \ + _locales \ + content \ + background.js \ + manifest.json \ + $(NULL) + +TBSYNC_FILES_EXCLUDE = \ + _locales/Readme.txt \ + $(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/tbsync@jobisoft.de.xpi \ + $(TBSYNC_FILES) \ + --exclude $(TBSYNC_FILES_EXCLUDE) + dh_auto_build |