README 1.1 KB

12345678910111213141516171819202122232425262728
  1. PKGBUILD file for building an openMSX package for archlinux/i686, contributed
  2. by Theo Smit <mappy@dutchlinuxclan.nl>.
  3. This PKGBUILD was only tested on i686 (32-bit), if you want to build for an
  4. x86_64 machine you can try to modify the PKGBUILD accordingly. If you're lucky
  5. you only have to modify the "arch=" line.
  6. Usage:
  7. - Create a temporary working directory and go there:
  8. $ mkdir /tmp/build-openmsx
  9. $ cd /tmp/build-openmsx
  10. - Copy the PKGBUILD file there:
  11. $ cp path/to/PKGBUILD .
  12. - Run the "makepkg" tool:
  13. $ makepkg
  14. This will download the sources for openMSX 0.6.2, verify the dependencies,
  15. compile openMSX, install it in the temporary directory and archive that
  16. installation into a binary openMSX package.
  17. - Install the binary package with the standard Arch package manager:
  18. $ pacman -A openmsx-0.6.2-1-i686.pkg.tar.gz
  19. - Now you can start openMSX:
  20. $ /opt/openMSX/bin/openmsx
  21. Please read the documentation in /opt/openMSX/doc/manual to learn more about
  22. openMSX, for example how to install additional system ROMs.
  23. ------------------------------------------------------------------------------