Add account name to distinguish multiple instances of service.
[sharing-cli] / debian / rules
1 #!/usr/bin/make -f
2
3 include /usr/share/cdbs/1/rules/debhelper.mk
4 include /usr/share/cdbs/1/class/autotools.mk
5 include /usr/share/cdbs/1/rules/buildcore.mk
6
7 DEB_DESTDIR = $(CURDIR)/debian/tmp
8
9 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
10         INSTALL_PROGRAM += -s
11 endif
12
13 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
14         DEB_CONFIGURE_EXTRA_FLAGS += --enable-debug
15 endif
16
17 common-configure-arch common-configure-indep:: debian/stamp-autotools-files
18 debian/stamp-autotools-files:
19         $(DEB_BUILDDIR)/autogen.sh
20         touch debian/stamp-autotools-files
21