From 0e21c84508ce84bcc7fd7ec05d02429fee1e22d1 Mon Sep 17 00:00:00 2001 From: speedie Date: Sun, 21 May 2023 22:13:47 +0200 Subject: [PATCH] fix typo --- README.html | 7 ++++--- README.md | 7 +++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.html b/README.html index 32c4d16..bb2debf 100644 --- a/README.html +++ b/README.html @@ -169,8 +169,7 @@

spmenu README

- +spmenu logo

spmenu

@@ -258,10 +257,12 @@ those packages in your distribution repositories.

Configure the build by running these commands:

mkdir -p build/ # Create a build/ directory, Meson will use this as the working directory

meson setup build # This will check to make sure all dependencies are found. If you're recompiling you may want to pass --reconfigure as an argument

+

This is where you can enable/disable certain features, as well as set +compiler options.

Now, to build it run ninja -C build. If all went well you should have a binary in the build/ directory.

Finally, to install it all, run:

-

meson install -C build --destdir /usr # /usr may be overriden to /usr/local or anything else if you use macOS or simply want another destination directory

+

meson install -C build --prefix /usr # /usr may be overriden to /usr/local or anything else if you use macOS or simply want another destination directory

To generate documentation, which may be necessary if you’re pushing new changes to your Git repository, run scripts/make/generate-docs.sh in the current diff --git a/README.md b/README.md index 482e79c..6acbc89 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![spmenu logo](docs/spmenu.svg "spmenu"){ width=25% } +![spmenu logo](docs/spmenu.svg "spmenu") spmenu ====== @@ -86,12 +86,15 @@ directory` `meson setup build # This will check to make sure all dependencies are found. If you're recompiling you may want to pass --reconfigure as an argument` +This is where you can enable/disable certain features, as well as set +compiler options. + Now, to build it run `ninja -C build`. If all went well you should have a binary in the `build/` directory. Finally, to install it all, run: -`meson install -C build --destdir /usr # /usr may be overriden to /usr/local +`meson install -C build --prefix /usr # /usr may be overriden to /usr/local or anything else if you use macOS or simply want another destination directory` To generate documentation, which may be necessary if you're pushing new changes