I've overridden dh_auto_install:
target in debian/rule
file. Now, all my built components installed in debian/tmp
.
I prepared package.install
for every package of my set but I have this issue:
Package A
should contains scripts
with two files.
Package B
should contains scripts
dir too but without two files that will be in package A
.
Of cause it's possible to set files in scripts
dir in debian/B.install
file. But scripts
dir contains huge count of files and put every of it will take a more time.
Is it possible to exclude some particular files in package.install
file?
debhelper
configuration files may be executable. Possibly I omit this fact when was reading "Debian New Maintainers' Guide". Strange that this feature isn't exists in any ofdebhelper
utility. RPM spec files instead has%exclude
macro for%files
section to achieve this target. – Yurij Goncharuk May 24 '18 at 16:07