File: rules

package info (click to toggle)
pyatem 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,400 kB
  • sloc: python: 14,021; xml: 362; ansic: 256; sh: 26; makefile: 23
file content (20 lines) | stat: -rwxr-xr-x 439 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
20
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export PYBUILD_NAME=pyatem
export TEST_FIXTURES=$(CURDIR)/pyatem/fixtures

%:
	dh $@ --buildsystem=pybuild

override_dh_auto_configure:
	dh_auto_configure
	meson setup build --prefix=/usr --buildtype=release

override_dh_auto_build:
	dh_auto_build
	meson compile -C build

override_dh_auto_install:
	dh_auto_install
	meson install -C build --destdir=$(CURDIR)/debian/tmp