|
@@ -12,7 +12,7 @@ D >= `2.076.0`
|
|
|
GraphicsMagick >= `1.3.0`
|
|
|
: http://www.graphicsmagick.org (only for non-macOS POSIX)
|
|
|
|
|
|
-You will also need either [Make] or [dub] (version 1.23.0 or newer).
|
|
|
+You will also need either [Meson] or [dub] (version 1.23.0 or newer).
|
|
|
|
|
|
pixiv_down is only tested on Linux and macOS.
|
|
|
|
|
@@ -22,21 +22,20 @@ It is possible to build pixiv_down using dub by running `dub build`.
|
|
|
|
|
|
**NOTE**: macOS only support building via dub.
|
|
|
|
|
|
-If you do not have `dub`, or simply don't want to use it, the typical GNU build
|
|
|
+If you do not have `dub`, or simply don't want to use it, the meson build
|
|
|
system can be used.
|
|
|
|
|
|
```bash
|
|
|
-./bootstrap
|
|
|
-./configure
|
|
|
-make
|
|
|
+meson setup builddir
|
|
|
+ninja -C builddir
|
|
|
```
|
|
|
|
|
|
The compiled executable can be found at `source/pixiv_down`.
|
|
|
|
|
|
-To install run:
|
|
|
+You can install the executable by running the following as root:
|
|
|
|
|
|
```bash
|
|
|
-make install
|
|
|
+ninja install
|
|
|
```
|
|
|
|
|
|
## Usage
|
|
@@ -157,5 +156,5 @@ version 3. You can find a copy in the COPYING file, or online at
|
|
|
<https://www.gnu.org/licenses/gpl-3.0.html>.
|
|
|
|
|
|
[dub]: https://dub.pm
|
|
|
-[Make]: https://gnu.org/s/make
|
|
|
+[Meson]: https://mesonbuild.com
|
|
|
[image-io]: https://developer.apple.com/documentation/imageio
|