From 7aa8203ac7c03fe1fc674c252494d95d170f0a7c Mon Sep 17 00:00:00 2001 From: Jack Lin <blueskyson1401@gmail.com> Date: Wed, 27 Nov 2024 10:45:42 +0000 Subject: [PATCH] Update doc links --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f07b4ed98..e777fdd7d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This repository contains the system source code and packages inside the `recipes - A recipe can be a software port or system package (they use `pkgar` or `tar.gz` formats). -**Read [this](https://doc.redox-os.org/book/ch09-03-porting-applications.html) page before porting programs to Redox** +**Read [this](https://doc.redox-os.org/book/porting-applications.html) page before porting programs to Redox** In order for this repository to be useful, it must be set up with an environment from the [redox](https://gitlab.redox-os.org/redox-os/redox) repository. @@ -63,7 +63,7 @@ Before sending your recipe to upstream (to become a public package), you must fo #### Cross-Compilation -- All recipes must use our cross-compilers, a Cookbook [template](https://doc.redox-os.org/book/ch09-03-porting-applications.html#templates) does this automatically but it's not always possible, study the build system of your program or library to find these options or patch the configuration files. +- All recipes must use our cross-compilers, a Cookbook [template](https://doc.redox-os.org/book/porting-applications.html#templates) does this automatically but it's not always possible, study the build system of your program or library to find these options or patch the configuration files. - Don't hardcode the CPU architecture on the recipe script (this would break the multi-arch support). #### Tarballs @@ -81,12 +81,12 @@ Before sending your recipe to upstream (to become a public package), you must fo #### Checksum -- If your recipe download a tarball, you will need to create a BLAKE3 hash for it. You can learn how to do it [here](https://doc.redox-os.org/book/ch09-03-porting-applications.html#create-a-blake3-hash-for-your-recipee). +- If your recipe download a tarball, you will need to create a BLAKE3 hash for it. You can learn how to do it [here](https://doc.redox-os.org/book/porting-applications.html#create-a-blake3-hash-for-your-recipe). #### License - Don't package programs or libraries lacking a license. -- Verify if the program has some license violation, in case of doubt ask us on the [chat](https://doc.redox-os.org/book/ch13-01-chat.html). +- Verify if the program has some license violation, in case of doubt ask us on the [chat](https://doc.redox-os.org/book/chat.html). - Non-free programs and assets should go to a subcategory of the `nonfree` category and be approved per license. ### Testing Area -- GitLab