Installing RPM package using alien on WSL Ubuntu

I was just flirting with the idea of installing one package ( bcl2fas2 ) on my WSL:Ubuntu using alien . However, when I run

sudo alien bcl2fastq2-v2.20.0.422-Linux-x86_64.rpm

I get the following error:

Package build failed. Here's the log:
dh_testdir
dh_testdir
dh_testroot
dh_prep
dh_installdirs
dh_installdirs: Compatibility levels before 9 are deprecated (level 7 in use)
dh_installdocs
dh_installdocs: Compatibility levels before 9 are deprecated (level 7 in use)
dh_installchangelogs
find . -maxdepth 1 -mindepth 1 -not -name debian -print0 | \
        xargs -0 -r -i cp -a {} debian/bcl2fastq2
dh_compress
dh_compress: Compatibility levels before 9 are deprecated (level 7 in use)
dh_makeshlibs
dh_installdeb
dh_installdeb: Compatibility levels before 9 are deprecated (level 7 in use)
dh_shlibdeps
dh_shlibdeps: Compatibility levels before 9 are deprecated (level 7 in use)
dh_gencontrol
dpkg-gencontrol: warning: Depends field of package bcl2fastq2: unknown substitution variable ${shlibs:Depends}
dh_md5sums
dh_builddeb
dpkg-deb: error: control directory has bad permissions 777 (must be >=0755 and <=0775)
dh_builddeb: dpkg-deb --build debian/bcl2fastq2 .. returned exit code 2
dh_builddeb: Aborting due to earlier error
debian/rules:17: recipe for target 'binary-arch' failed
make: *** [binary-arch] Error 2

Is there any way to accomplish this task on WSL?