File: rules

package info (click to toggle)
tess 0.3.0-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 484 kB
  • sloc: sh: 2,841; makefile: 179
file content (21 lines) | stat: -rwxr-xr-x 427 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/make -f

%:
	dh $@

execute_after_dh_autoreconf:
	mv admin/configure .

override_dh_auto_build:
	dh_auto_build -- RPATH=

override_dh_auto_install:
	dh_auto_install -- datarootdir=share

ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
	SLSH_PATH=.:.. $(MAKE) -C examples VERBOSE=-v && echo "Test ok"
endif

execute_after_dh_installdeb:
	find debian/slang-tess -name test.out -exec rm -f \{} \;