You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
471 B
19 lines
471 B
#!/usr/bin/make -f
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/cmake.mk
|
|
include debian/cdbs/debian-tde.mk
|
|
|
|
DEB_CMAKE_EXTRA_FLAGS := \
|
|
-DCMAKE_VERBOSE_MAKEFILE="ON" \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
common-binary-indep::
|
|
( set -e; \
|
|
tmpf=`mktemp debian/cmake-versions.XXXXXX`; \
|
|
perl debian/cdbs/cmake-versions.pl >$$tmpf; \
|
|
for p in $(DEB_INDEP_PACKAGES); do \
|
|
cat $$tmpf >>debian/$$p.substvars; \
|
|
done; \
|
|
rm -f $$tmpf )
|