@ineuw > There doesn't seem to be a simple direct installation method for users with > limited knowledge, like myself.
Here is a copy-and-paste-able installation script (assuming you don't care about the API documentation), suitable even for [CI/CD deployments](https://github.com/rdipardo/fpgeanyplugin/blob/7250943f3a158e9d0cb9d4d9a5aa79dd3f755266/.circleci/build_geany.sh): ~~~sh sudo apt update && \ sudo apt install --no-install-recommends \ build-essential \ autopoint \ ccache \ gettext \ intltool \ libtool \ libgtk-3-dev NOCONFIGURE=1 ./autogen.sh mkdir -p _build && cd _build ../configure --prefix=/usr \ --disable-html-docs \ --disable-pdf-docs \ --disable-api-docs \ --disable-gtkdoc-header \ --enable-binreloc=no make -j4 && sudo make install && sudo ldconfig ~~~ -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3852#issuecomment-2071251515 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/issues/3852/[email protected]>
