morphbr@534
|
1 |
#!/usr/bin/make -f
|
morphbr@534
|
2 |
|
morphbr@534
|
3 |
include /usr/share/cdbs/1/rules/debhelper.mk
|
morphbr@534
|
4 |
include /usr/share/cdbs/1/class/autotools.mk
|
morphbr@534
|
5 |
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
morphbr@534
|
6 |
include /usr/share/cdbs/1/rules/utils.mk
|
morphbr@534
|
7 |
|
morphbr@534
|
8 |
# debian package version
|
morphbr@534
|
9 |
version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2)
|
morphbr@534
|
10 |
|
morphbr@534
|
11 |
maint: debian/control
|
morphbr@534
|
12 |
|
morphbr@534
|
13 |
common_conf_flags = \
|
morphbr@534
|
14 |
--disable-debug
|
morphbr@534
|
15 |
|
morphbr@534
|
16 |
# FIXME: should disable docs for arch only builds
|
morphbr@534
|
17 |
DEB_CONFIGURE_EXTRA_FLAGS := $(common_conf_flags)
|
morphbr@534
|
18 |
|
morphbr@534
|
19 |
DEB_INSTALL_DOCS_ALL += debian/README.Debian NEWS
|
morphbr@534
|
20 |
|
morphbr@534
|
21 |
.PHONY: maint
|