gplugin/gplugin

Moving INSTALL to markdown
develop
2019-08-12, Gary Kramlich
855ca5676e50
Parents c51ad2ad784f
Children c15c5a0f012e
Moving INSTALL to markdown
  • +0 -35
    INSTALL
  • +39 -0
    INSTALL.md
  • --- a/INSTALL Tue Jul 30 01:14:28 2019 +0000
    +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
    @@ -1,35 +0,0 @@
    -Dependencies
    -============
    -GPlugin depends on the following at a bare minimum:
    - glib-2.0 >= 2.34.0
    - gobject-introspection, libgirepository1.0-dev
    - meson >= 0.37.0
    - gettext
    - help2man
    - a C compiler
    -
    -A full build (enabled by default) depends on the following:
    - gtk-3
    - python3-dev, python-gi-dev, python3-gi
    - liblua5.1-0-dev, lua-lgi
    - valac
    -
    -All of these packages and their development headers need to be installed
    -prior to building GPlugin.
    -
    -Building
    -========
    -GPlugin uses meson (http://mesonbuild.com/) as its build system. As such
    -compiling is a little bit different than your typical ./configure, make,
    -sudo make install. But luckily for you, not too much different.
    -
    -Meson requires you to build in a separate directory than your source. As such, these instructions use a separate build directory.
    -
    -To compile you need to run the following commands:
    -
    - meson build
    - cd build
    - ninja install
    -
    -If you want/need to tweak the build system (to enable/disable certain loaders)
    -you can do so at any time by using mesonconf in the build directory.
    --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/INSTALL.md Mon Aug 12 20:41:54 2019 -0500
    @@ -0,0 +1,39 @@
    +# Dependencies
    +
    +GPlugin depends on the following at a bare minimum:
    + * glib-2.0 >= 2.40.0
    + * gobject-introspection, libgirepository1.0-dev
    + * meson >= 0.42.0
    + * gettext
    + * help2man
    + * a C compiler
    +
    +A full build (enabled by default) depends on the following:
    + * gtk-3
    + * python3-dev, python-gi-dev, python3-gi
    + * liblua5.1-0-dev, lua-lgi
    + * valac
    +
    +All of these packages and their development headers need to be installed
    +prior to building GPlugin.
    +
    +# Building
    +
    +GPlugin uses meson (http://mesonbuild.com/) as its build system. As such
    +compiling is a little bit different than your typical ./configure, make,
    +sudo make install. But luckily for you, not too much different.
    +
    +Meson requires you to build in a separate directory than your source. As such,
    +these instructions use a separate build directory.
    +
    +To compile you need to run the following commands:
    +
    +```
    +meson build
    +cd build
    +ninja install
    +```
    +
    +If you want/need to tweak the build system (to enable/disable certain loaders)
    +you can do so at any time by using mesonconf in the build directory.
    +