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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
#!/usr/bin/make -f
include /usr/share/dpkg/architecture.mk
WITH_SHINE_VORBIS_TREMOR=-Dshine=disabled -Dvorbis=enabled -Dvorbisenc=enabled -Dtremor=disabled
ifeq ($(DEB_HOST_ARCH), armel)
WITH_SHINE_VORBIS_TREMOR=-Dshine=enabled -Dvorbis=disabled -Dvorbisenc=disabled -Dtremor=enabled
endif
# systemd, alsa and io_uring on linux arches only
ifeq ($(DEB_HOST_ARCH_OS), linux)
WITH_LINUX=-Dsystemd=enabled -Dalsa=enabled -Dio_uring=enabled
else
WITH_LINUX=-Dsystemd=disabled -Dalsa=disabled -Dio_uring=disabled
endif
# no smbclient on hurd-i386 (#815441)
ENABLE_SMBCLIENT=-Dsmbclient=enabled
ifeq ($(DEB_HOST_ARCH), hurd-i386)
ENABLE_SMBCLIENT=-Dsmbclient=disabled
endif
###############################################################
## Define Debian feature set (in configure summary order)
RUN_TESTS=-Dtest=true
# Archive support
ENABLE_ARCHIVES=-Dbzip2=enabled \
-Diso9660=enabled \
-Dzlib=enabled \
-Dzzip=enabled
# Autodiscovery support
ENABLE_AUTODISCOVERY=-Dneighbor=true \
-Dupnp=pupnp \
-Dzeroconf=avahi
# Client support
ENABLE_CLIENTS=-Dipv6=enabled \
-Dtcp=true \
-Dlocal_socket=true
# Storage support
ENABLE_STORAGE=-Dnfs=enabled \
${ENABLE_SMBCLIENT} \
-Dwebdav=enabled
# File format support
ENABLE_FILEFORMATS=-Dfaad=enabled \
-Dadplug=enabled \
-Daudiofile=disabled \
-Dffmpeg=enabled \
-Dflac=enabled \
-Dfluidsynth=enabled \
-Dgme=enabled \
-Dmad=enabled \
-Dmikmod=enabled \
-Dmodplug=enabled \
-Dmpcdec=enabled \
-Dmpg123=enabled \
-Dopenmpt=enabled \
-Dopus=enabled \
-Dsidplay=enabled \
-Dsndfile=enabled \
-Dwavpack=enabled \
-Dwildmidi=enabled
# Other features
ENABLE_OTHER=-Dcue=true \
-Ddatabase=true \
-Dexpat=enabled \
-Dicu=enabled \
-Dlibmpdclient=enabled \
-Dnlohmann_json=enabled \
-Dinotify=true \
-Dsoxr=enabled \
-Dlibsamplerate=enabled \
-Dsqlite=enabled \
-Dsyslog=enabled \
-Dpcre=enabled
# Metadata support
ENABLE_METADATA=-Did3tag=enabled \
-Dchromaprint=enabled
# Playback support
# Note: ALSA is in WITH_LINUX
ENABLE_PLAYBACKS=-Dfifo=true \
-Dsndio=enabled \
-Drecorder=true \
-Dhttpd=true \
-Djack=enabled \
-Dao=enabled \
-Doss=enabled \
-Dopenal=enabled \
-Dpipe=true \
-Dpipewire=enabled \
-Dpulse=enabled \
-Dshout=enabled \
-Dsnapcast=true
# Streaming encoder support
# Note: FLAC and Opus enabled under file formats, vorbisenc at top (!tremor)
ENABLE_ENCODERS=-Dlame=enabled \
-Dtwolame=disabled \
-Dwave_encoder=true \
# Streaming support
ENABLE_STREAMING=-Dcdio_paranoia=enabled \
-Dcurl=enabled \
-Dqobuz=disabled \
-Dmms=enabled
# Sphinx documentation
ENABLE_DOCUMENTATION=-Ddocumentation=enabled
###############################################################
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --with sphinxdoc
override_dh_auto_configure:
dh_auto_configure -- -Db_ndebug=true $(WITH_SHINE_VORBIS_TREMOR) $(WITH_LINUX) \
$(RUN_TESTS) \
$(ENABLE_ARCHIVES) \
$(ENABLE_AUTODISCOVERY) \
$(ENABLE_CLIENTS) \
$(ENABLE_STORAGE) \
$(ENABLE_FILEFORMATS) \
$(ENABLE_OTHER) \
$(ENABLE_METADATA) \
$(ENABLE_PLAYBACKS) \
$(ENABLE_ENCODERS) \
$(ENABLE_STREAMING) \
$(ENABLE_DOCUMENTATION)
override_dh_installchangelogs:
dh_installchangelogs NEWS
rm debian/mpd/usr/share/doc/mpd/COPYING debian/mpd/usr/share/doc/mpd/NEWS debian/mpd/usr/share/doc/mpd/README.md
override_dh_installsystemd:
dh_installsystemd --no-enable --no-start
override_dh_installsystemduser:
dh_installsystemduser --no-enable
|