File: rules

package info (click to toggle)
prelude-lml 1.0.0-5.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 7,800 kB
  • ctags: 4,543
  • sloc: ansic: 36,140; sh: 11,376; makefile: 221; python: 21
file content (19 lines) | stat: -rwxr-xr-x 441 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
#export DH_VERBOSE=1

export DH_VERBOSE = 1

%:
	dh ${@}

override_dh_auto_configure:
	dh_auto_configure -- --enable-gtk-doc=no \
		ICU_CFLAGS="$(shell pkg-config --cflags icu-i18n)" \
		ICU_LIBS="$(shell pkg-config --libs icu-i18n)"

override_dh_auto_install:
	dh_auto_install -X.la; \
	find debian/prelude-lml/usr/lib -name '*.la' -delete

override_dh_auto_test:
	# tests disabled to avoid failure on kFreeBSD (#677852)