Skip to content

Commit 8093cd2

Browse files
committed
Updated some of the links in the README.
1 parent 90b948a commit 8093cd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
This repository compiles the [**igraph** C library](https://igraph.org/c/) to Wasm binaries that can be quickly linked to other object files.
66
The aim is to avoid a tedious re-compilation process for each individual Wasm project,
77
especially when only a small part of **igraph**'s functionality is required.
8-
For example, compiling **igraph** takes up over half of the build time of [**scran.js**](https://github.com/jkanche/scran.js),
8+
For example, compiling **igraph** takes up over half of the build time of [**scran.js**](https://github.com/kanaverse/scran.js),
99
so providing prebuilt binaries can greatly streamline the CI/CD iterations.
1010

1111
Usage of these binaries implies acceptance of the **igraph** license,
1212
see [here](https://github.com/igraph/igraph) for more details.
1313

1414
## Quick start
1515

16-
Developers can fetch the `libigraph.a` static library from the [Releases](https://github.com/LTLA/igraph-wasm/releases) page along with the required headers.
16+
Developers can fetch the `libigraph.a` static library from the [Releases](https://github.com/kanaverse/igraph-wasm/releases) page along with the required headers.
1717
This contains the contents of the directory created by running `make install` in the **igraph** build directory.
1818
We also add our own `CMakeLists.txt` for convenient linking with CMake's `FetchContent`:
1919

2020
```
2121
FetchContent_Declare(
2222
igraph
23-
URL https://github.com/LTLA/igraph-wasm/releases/download/v0.1.1_3.1.25/igraph-0.9.4-wasm.tar.gz
23+
URL https://github.com/kanaverse/igraph-wasm/releases/download/v0.1.1_3.1.25/igraph-0.9.4-wasm.tar.gz
2424
URL_HASH SHA256=efe59e45472c04b51eee73bc950e5cbcb2d67e859fe93bab927188b3f31cb18f
2525
)
2626
FetchContent_MakeAvailable(igraph)

0 commit comments

Comments
 (0)