Advertisement
fant0men

compile vobcopy

Feb 26th, 2020
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. Get vobcopy to compile:
  2.  
  3. *** in configure.ac ***
  4.  
  5. comment line 14, 15:
  6. #AM_GNU_GETTEXT([external])
  7. #AM_GNU_GETTEXT_VERSION([0.18])
  8.  
  9. change line 43 to:
  10. AC_CONFIG_FILES([Makefile])
  11.  
  12. *** in Makefile.am ***
  13.  
  14. remove line 2:
  15. SUBDIRS = po
  16.  
  17. run these commands from the source tree:
  18.  
  19. libtoolize --force
  20. aclocal
  21. autoheader
  22. automake --force-missing --add-missing
  23. autoconf
  24. ./configure
  25.  
  26. ***
  27.  
  28. Make sure these packages are installed:
  29.  
  30. shtool
  31. autoconf
  32. automake
  33. autogen
  34. libtool
  35. libdvdread-devel
  36.  
  37. ***
  38.  
  39. then run:
  40. make
  41.  
  42. ***
  43.  
  44. Installed files:
  45.  
  46. $ sudo make install
  47. make[1]: Entering directory '/run/media/lucifer/0d6b70fa-0c49-47d6-84c1-3f8509d52b58/vobcopy/vobcopy-master'
  48. /usr/bin/mkdir -p '/usr/local/bin'
  49. /usr/bin/install -c vobcopy '/usr/local/bin'
  50. /usr/bin/mkdir -p '/usr/local/share/doc/vobcopy'
  51. /usr/bin/install -c -m 644 alternative_programs.txt Changelog README Release-Notes TODO COPYING '/usr/local/share/doc/vobcopy'
  52. /usr/bin/mkdir -p '/usr/local/share/man/man1'
  53. /usr/bin/install -c -m 644 vobcopy.1 '/usr/local/share/man/man1'
  54. /usr/bin/mkdir -p '/usr/local/share/man/de/man1'
  55. /usr/bin/install -c -m 644 intl/de/vobcopy.1 '/usr/local/share/man/de/man1'
  56. make[1]: Leaving directory '/run/media/lucifer/0d6b70fa-0c49-47d6-84c1-3f8509d52b58/vobcopy/vobcopy-master'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement