Merge pull request #529 from kiwix/url_fixes
This commit is contained in:
commit
2f1418949a
16
README.md
16
README.md
|
@ -3,8 +3,8 @@
|
||||||
Kiwix Build provides advanced tools to (cross-)compile easily
|
Kiwix Build provides advanced tools to (cross-)compile easily
|
||||||
[Kiwix](https://kiwix.org) & [openZIM](https://openzim.org) softwares
|
[Kiwix](https://kiwix.org) & [openZIM](https://openzim.org) softwares
|
||||||
and libraries and deploy them. They have been tested on
|
and libraries and deploy them. They have been tested on
|
||||||
[Fedora](https://getfedora.org) 23+ & [Ubuntu](https://ubuntu.com)
|
[Fedora](https://getfedora.org) 35+ & [Ubuntu](https://ubuntu.com)
|
||||||
16.10+.
|
18.04+.
|
||||||
|
|
||||||
[](https://github.com/kiwix/kiwix-build/actions?query=branch%3Amaster)
|
[](https://github.com/kiwix/kiwix-build/actions?query=branch%3Amaster)
|
||||||
[](https://www.gnu.org/licenses/gpl-3.0)
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
||||||
|
@ -35,7 +35,7 @@ Then, download and install kiwix-build and its dependencies:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/kiwix/kiwix-build.git
|
git clone https://github.com/kiwix/kiwix-build.git
|
||||||
cd kiwix-build
|
cd kiwix-build
|
||||||
pip install .
|
pip3 install .
|
||||||
hash -r # Refresh bash paths
|
hash -r # Refresh bash paths
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -118,16 +118,16 @@ kiwix-build libkiwix --target-platform android_arm
|
||||||
But, `libkiwix-app` is mainly multi arch.
|
But, `libkiwix-app` is mainly multi arch.
|
||||||
To compile `libkiwix-app`, you must use the `android` platform:
|
To compile `libkiwix-app`, you must use the `android` platform:
|
||||||
```bash
|
```bash
|
||||||
$ kiwix-build --target-platform android libkiwix-app
|
kiwix-build --target-platform android libkiwix-app
|
||||||
$ kiwix-build libkiwix-app # because `android` platform is the default for `libkiwix-app`
|
kiwix-build libkiwix-app # because `android` platform is the default for `libkiwix-app`
|
||||||
```
|
```
|
||||||
|
|
||||||
By default, when using platform `android`, `libkiwix` will be build for
|
By default, when using platform `android`, `libkiwix` will be build for
|
||||||
all architectures. This can be changed by using the option `--android-arch`:
|
all architectures. This can be changed by using the option `--android-arch`:
|
||||||
```bash
|
```bash
|
||||||
$ kiwix-build libkiwix-app # aar with all architectures
|
kiwix-build libkiwix-app # aar with all architectures
|
||||||
$ kiwix-build libkiwix-app --android-arch arm # aar with arm architecture
|
kiwix-build libkiwix-app --android-arch arm # aar with arm architecture
|
||||||
$ kiwix-build libkiwix-app --android-arch arm --android-arch arm64 # aan with arm and arm64 architectures
|
kiwix-build libkiwix-app --android-arch arm --android-arch arm64 # aan with arm and arm64 architectures
|
||||||
```
|
```
|
||||||
|
|
||||||
To build `kiwix-android` itself, you should see the documentation of `kiwix-android`.
|
To build `kiwix-android` itself, you should see the documentation of `kiwix-android`.
|
||||||
|
|
Loading…
Reference in New Issue