File: rules

package info (click to toggle)
biber 2.20-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,436 kB
  • sloc: perl: 17,354; sh: 1,084; xml: 896; makefile: 11
file content (19 lines) | stat: -rwxr-xr-x 454 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

TEST_FILES=$(filter-out t/remote-files.t,$(shell echo t/*.t))

TEXMFVAR := $(shell mktemp -d)
export TEXMFVAR

%:
	dh $@ --with tex

override_dh_auto_build:
	dh_auto_build
	# Build biber.pdf using utc timezone
	lualatex --utc --output-directory=doc doc/biber.tex
	lualatex --utc --output-directory=doc doc/biber.tex

override_dh_auto_test:
	: do nothing here, otherwise test suite is run.
	#dh_auto_test -- test_files="$(TEST_FILES)"