Guest User

Untitled

a guest
Aug 2nd, 2022
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. Building from Source:
  2.  
  3. Find below short instructions on how to build Onboard straight from the
  4. bazaar repository. If you have improvements to share, get errors or run
  5. into other problems, please let us know. Build instructions for
  6. new distributions are always welcome too.
  7.  
  8. Arch Linux:
  9.  
  10. pacman -S base-devel bzr python-distutils-extra dconf gtk3 \
  11. libcanberra hunspell python-gobject gsettings-desktop-schemas \
  12. iso-codes python-cairo librsvg python-dbus dbus-glib
  13.  
  14. bzr branch lp:onboard
  15. cd onboard
  16. ./setup.py build
  17. tools/install_gsettings_schema
  18.  
  19. # At this point you should be able to start Onboard
  20. # from the project directory with
  21. ./onboard
  22.  
  23. # If everything works as expected, install with
  24. sudo ./setup.py install
  25.  
  26. # And if necessary, uninstall with
  27. sudo ./setup.py install --record files.txt
  28. sudo xargs -a files.txt --delimiter='\n' rm -v
  29. sudo rm -rf /usr/local/share/onboard
  30.  
  31.  
  32. Mageia 4:
  33.  
  34. urpmi bzr gcc-c++ lib64zlib-devel python3-distutils-extra \
  35. libgtk+3.0-devel libxtst-devel libxkbfile-devel libdconf-devel \
  36. libhunspell-devel libcanberra-devel libpython3-devel intltool
  37.  
  38. # more or less optional, but recommended for full functionality
  39. urpmi mousetweaks lib64atspi-gir2.0 at-spi2-core-qt \
  40. python3-dbus qtatspi-plugin
  41.  
  42. bzr branch lp:onboard
  43. cd onboard
  44. ./setup.py build
  45. tools/install_gsettings_schema
  46.  
  47. # At this point you should be able to start Onboard
  48. # from the project directory with
  49. ./onboard
  50.  
  51. # If everything works as expected, install with
  52. su
  53. ./setup.py install
  54.  
  55. # And if necessary, uninstall with
  56. su
  57. ./setup.py install --record files.txt
  58. sudo xargs -a files.txt --delimiter='\n' rm -v
  59. sudo rm -rf /usr/local/share/onboard
  60.  
  61.  
  62. Ubuntu 14.04:
  63.  
  64. sudo apt-get build-dep onboard
  65. sudo apt-get install devscripts
  66. bzr branch lp:onboard
  67. cd onboard
  68.  
  69. # build packages
  70. debuild binary
  71.  
  72. # install packages
  73. sudo dpkg -i ../onboard*.deb
Advertisement
Add Comment
Please, Sign In to add comment