blob: 0a90277ac1a9d95344b99e55947ca632faffefdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/bin/make -f
include /usr/share/dpkg/architecture.mk
export DEB_BUILD_MAINT_OPTIONS := hardening=+all # #741439, #799738
ifeq ($(DEB_HOST_ARCH_OS),linux)
ARCH_CONFIGURE = -Ddvbin=enabled
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
-Dlibmpv=true \
-Dbuild-date=false \
-Dcdda=enabled \
-Ddvdnav=enabled \
-Dsdl2=enabled \
-Dsndio=disabled \
$(ARCH_CONFIGURE)
execute_after_dh_auto_install:
mv debian/tmp/usr/share/zsh/site-functions debian/tmp/usr/share/zsh/vendor-completions
override_dh_installchangelogs:
dh_installchangelogs RELEASE_NOTES
|