File: rules

package info (click to toggle)
editorconfig-emacs 0.8.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 644 kB
  • sloc: lisp: 1,456; sh: 105; makefile: 56; python: 4
file content (18 lines) | stat: -rwxr-xr-x 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

%:
	dh $@

override_dh_install:
	dh_install
	dh_elpa

override_dh_auto_build:
# NO-OP to ignore upstreams Makefile

override_dh_auto_test:
# gbp fails with debian/patches in git submodule, so I need to "patch" here
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
	sed -i '/utf_8_char/d' core-test/glob/CMakeLists.txt
	dh_auto_test
endif