all the rest being optional, i'd say that you loose nothing when including them all as if a fully-featured build.
you might also wish to have a look at debian/rules, where you probable see that the correct build sequence is something that boild down to like the following:
export QT_SELECT=5
./autogen.sh
./configure --prefix=/usr && make
take a look at
debian/control
file that you find on the git working tree, take special note to thatBuild-Depends:
line...anyway, the mandatory minimal dependencies are the following ones:
qtbase5-dev-tools
qttools5-dev-tools
qtchooser
libjack-dev
libasound2-dev
libsndfile-dev
ladspa-sdk
zlib1g-dev
all the rest being optional, i'd say that you loose nothing when including them all as if a fully-featured build.
you might also wish to have a look at
debian/rules
, where you probable see that the correct build sequence is something that boild down to like the following:export QT_SELECT=5
./autogen.sh
./configure --prefix=/usr && make
and finally, if and after the above succeeds:
sudo make install
hth.
cheers