blob: 135dfcf322f03b5f4efe58ee6cf5d95911837fde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
|