blob: ed41550e0248fc04bc19917fd979158785a68f15 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#!/usr/bin/make -f
DPKG_EXPORT_BUILDFLAGS = 1
DEB_LDFLAGS_MAINT_APPEND = -Wl,--no-as-needed
DEB_BUILD_MAINT_OPTIONS = hardening=+all
include /usr/share/dpkg/default.mk
# Needed for testsuite
export XDG_RUNTIME_DIR = $(CURDIR)/debian/tmp/tmp/xdgruntimedir
export CK_TIMEOUT_MULTIPLIER = 0
# Libs should be in the multi-arch path, but the modules should be in the
# normal directory as pulseaudio is foreign
DEB_CONFIGURE_EXTRA_FLAGS = --enable-x11 --disable-hal-compat \
--libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
--with-module-dir=\$${prefix}/lib/pulse-$(DEB_VERSION_UPSTREAM)/modules \
--with-zsh-completion-dir=\$${datadir}/zsh/vendor-completions \
--with-bash-completion-dir=\$${datadir}/bash-completion/completions \
--with-systemduserunitdir=\$${prefix}/lib/systemd/user \
--disable-bluez4 \
--disable-esound \
--enable-gsettings \
--disable-gstreamer \
--disable-gconf \
--with-pulsedsp-location=/usr/\\\\'$$$$'LIB/pulseaudio \
--enable-stream-restore-clear-old-devices
PA_MAJORMINOR = $(shell echo $(DEB_VERSION_UPSTREAM) | sed -r -e 's/^([0-9]+\.[0-9]+).*/\1/')
ifeq ($(words $(sort $(filter stage1,$(DEB_BUILD_PROFILES)))),1)
DEB_CONFIGURE_EXTRA_FLAGS += --disable-bluez5
endif
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- $(DEB_CONFIGURE_EXTRA_FLAGS)
override_dh_auto_install:
dh_auto_install
find debian/tmp -name "*.la" -delete
install -d $(CURDIR)/debian/tmp/usr/share/apport/package-hooks
cp $(CURDIR)/debian/apport-hook.py $(CURDIR)/debian/tmp/usr/share/apport/package-hooks/source_pulseaudio.py
ifeq ($(DEB_HOST_ARCH_OS),linux)
mkdir -p $(CURDIR)/debian/tmp/usr/share/alsa/alsa.conf.d
cp -a $(CURDIR)/debian/pulse.conf \
$(CURDIR)/debian/tmp/usr/share/alsa/alsa.conf.d
cp -a $(CURDIR)/debian/pulse-alsa.conf $(CURDIR)/debian/tmp/usr/share/alsa
endif
override_dh_makeshlibs:
sed 's/PA_MAJORMINOR/$(PA_MAJORMINOR)/' debian/shlibs.local.in > debian/shlibs.local
dh_makeshlibs --exclude=usr/lib/pulse-$(DEB_VERSION_UPSTREAM)/modules \
--exclude=usr/lib/$(DEB_HOST_MULTIARCH)/pulseaudio
override_dh_shlibdeps:
dh_shlibdeps --libpackage=pulseaudio
override_dh_missing:
dh_missing --fail-missing
override_dh_installinit:
dh_installinit -ppulseaudio --name=pulseaudio-enable-autospawn
override_dh_installdocs:
dh_installdocs -A NEWS README
override_dh_clean:
dh_clean
rm -f debian/shlibs.local
|