realh / roxterm

A highly configurable terminal emulator
GNU General Public License v2.0
102 stars 12 forks source link

Fine on Arch but then interrupted when switched to Debian #229

Open abdulbadii opened 4 years ago

abdulbadii commented 4 years ago

After success have this on Arch then I switched to Debian but now although cmake .. successful gave a makefile, stumbled on

make 

make[2]: XSLTPROC-NOTFOUND: Command not found
make[2]: *** [CMakeFiles/manpages.dir/build.make:62: roxterm.1] Error 127
make[1]: *** [CMakeFiles/Makefile2:105: CMakeFiles/manpages.dir/all] Error 2
make: *** [Makefile:130: all] Error 2

Why on Debian has problem while it was easily produced on Archlinux ?

realh commented 4 years ago

It looks like you need to install xsltproc. If you've downloaded it from github you should have the debian folder included, so the best way to install it is by building a .deb package with: debuild -i -uc -us -b. You may get some warnings about the target release being Ubuntu instead of Debian etc, but it will still work.

abdulbadii commented 4 years ago

Can't find dbuild so just directly search xsltproc by apt, was fixed and built perfectly but keep curious what debuild is

realh commented 4 years ago

I think it's in a package called devscripts. Or you could use dpkg-buildpackage instead.