generated from general-packages/pika-pkg-template
162 lines
3.4 KiB
Makefile
Executable File
162 lines
3.4 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
ifneq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
|
|
DOCS=disabled
|
|
MAN=disabled
|
|
else
|
|
DOCS=enabled
|
|
MAN=enabled
|
|
endif
|
|
|
|
built_binaries := $(shell dh_listpackages)
|
|
|
|
ifneq ($(filter %-tests,$(built_binaries)),)
|
|
INSTTEST=enabled
|
|
SDL2=enabled
|
|
else
|
|
INSTTEST=disabled
|
|
SDL2=disabled
|
|
endif
|
|
|
|
### PikaOS changes
|
|
|
|
# LDAC Arch Check
|
|
ifneq (,$(filter s390x hppa m68k powerpc ppc64 sparc64,$(DEB_HOST_ARCH)))
|
|
BLUEZ5_CODEC_LDAC=disabled
|
|
else
|
|
BLUEZ5_CODEC_LDAC=enabled
|
|
endif
|
|
|
|
# LIBCAMERA Arch Check
|
|
ifneq (,$(filter m68k hurd-amd64 hurd-i386,$(DEB_HOST_ARCH)))
|
|
LIBCAMERA=disabled
|
|
else
|
|
LIBCAMERA=enabled
|
|
endif
|
|
|
|
# LIBROC Arch Check
|
|
ifneq (,$(filter hppa i386 i686 m68k powerpc sparc64,$(DEB_HOST_ARCH)))
|
|
LIBROC=disabled
|
|
cmnt_libroc=$(shell sed -e '/module-roc-s/ s/^\#*/\#/' -i debian/libpipewire-0.3-modules.install)
|
|
else
|
|
LIBROC=enabled
|
|
endif
|
|
|
|
# APTX Arch Check
|
|
ifneq (,$(filter hppa i386 i686 m68k powerpc sparc64,$(DEB_HOST_ARCH)))
|
|
APTX=disabled
|
|
else
|
|
APTX=enabled
|
|
endif
|
|
|
|
# AAC Arch Check
|
|
ifneq (,$(filter hppa i386 i686 m68k powerpc sparc64,$(DEB_HOST_ARCH)))
|
|
AAC=disabled
|
|
else
|
|
AAC=enabled
|
|
endif
|
|
|
|
# LTO Arch Check
|
|
ifneq (,$(filter armhf hppa i386 i686 m68k powerpc sparc64,$(DEB_HOST_ARCH)))
|
|
LTO=enabled
|
|
else
|
|
LTO=disabled
|
|
endif
|
|
|
|
# COMPRESS Arch Check
|
|
ifneq (,$(filter i386,$(DEB_HOST_ARCH)))
|
|
COMPRESS_OFFLOAD=disabled
|
|
else
|
|
COMPRESS_OFFLOAD=enabled
|
|
endif
|
|
|
|
# Just always have vulkan
|
|
VULKAN_ENABLED=enabled
|
|
|
|
### End of PikaOS Changes
|
|
|
|
LV2=enabled
|
|
LIBMYSOFA=enabled
|
|
LIBFFADO=enabled
|
|
|
|
ifneq (,$(filter hurd-amd64 hurd-i386,$(DEB_HOST_ARCH)))
|
|
UDEVRULESDIR=
|
|
else
|
|
export UDEVRULESDIR=/usr/lib/udev/rules.d
|
|
# For pre-Trixie releases udev rules should go in:
|
|
# export UDEVRULESDIR=/lib/udev/rules.d
|
|
endif
|
|
|
|
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
-Daudiotestsrc=enabled \
|
|
-Dauto_features=enabled \
|
|
-Db_lto=$(LTO) \
|
|
-Davahi=enabled \
|
|
-Dbluez5-backend-native-mm=enabled \
|
|
-Dbluez5-codec-aac=$(AAC) \
|
|
-Dbluez5-codec-aptx=$(APTX) \
|
|
-Dbluez5-codec-lc3=$(LIBLC3) \
|
|
-Dbluez5-codec-lc3plus=disabled \
|
|
-Dbluez5-codec-ldac=$(BLUEZ5_CODEC_LDAC) \
|
|
-Dbluez5-codec-opus=enabled \
|
|
-Dlibcamera=$(LIBCAMERA) \
|
|
-Dlibffado=$(LIBFFADO) \
|
|
-Dlibmysofa=$(LIBMYSOFA) \
|
|
-Ddocs=$(DOCS) \
|
|
-Dffmpeg=disabled \
|
|
-Dinstalled_tests=$(INSTTEST) \
|
|
-Dlv2=$(LV2) \
|
|
-Dman=$(MAN) \
|
|
-Dsdl2=$(SDL2) \
|
|
-Dsession-managers= \
|
|
-Dsnap=$(SNAP) \
|
|
-Dtest=enabled \
|
|
-Dudevrulesdir=$(UDEVRULESDIR) \
|
|
-Dvideotestsrc=enabled \
|
|
-Dvulkan=$(VULKAN_ENABLED) \
|
|
-Droc=$(LIBROC) \
|
|
$(NULL)
|
|
install -d debian/ld.so.conf.d
|
|
echo "/usr/lib/$(DEB_HOST_MULTIARCH)/pipewire-0.3/jack/" > "debian/ld.so.conf.d/pipewire-jack-$(DEB_HOST_MULTIARCH).conf"
|
|
|
|
test_timeout_multiplier = 1
|
|
|
|
ifneq ($(filter arm hppa ia64 m68k riscv64 sh4 sparc%,$(DEB_HOST_ARCH_CPU)),)
|
|
test_timeout_multiplier = 5
|
|
endif
|
|
|
|
ifneq ($(filter mips%,$(DEB_HOST_ARCH_CPU)),)
|
|
test_timeout_multiplier = 10
|
|
endif
|
|
|
|
override_dh_auto_test:
|
|
dh_auto_test \
|
|
-- \
|
|
--timeout-multiplier $(test_timeout_multiplier) \
|
|
$(NULL)
|
|
|
|
override_dh_makeshlibs:
|
|
dh_makeshlibs \
|
|
--exclude=/usr/lib/$(DEB_HOST_MULTIARCH)/gstreamer-1.0 \
|
|
--exclude=/usr/lib/$(DEB_HOST_MULTIARCH)/pipewire-0.3 \
|
|
--exclude=/usr/lib/$(DEB_HOST_MULTIARCH)/spa-0.2 \
|
|
-- -c4
|
|
|
|
override_dh_shlibdeps-arch:
|
|
dh_shlibdeps \
|
|
-ppipewire-jack \
|
|
-l/usr/lib/$(DEB_HOST_MULTIARCH)/pipewire-0.3 \
|
|
-- \
|
|
-Ldebian/pipewire-jack.shlibs.local \
|
|
$(NULL)
|
|
dh_shlibdeps \
|
|
--remaining-packages \
|
|
-l/usr/lib/$(DEB_HOST_MULTIARCH)/pipewire-0.3 \
|
|
$(NULL)
|