From 3b265db31dcb9d872fafb4a161d62160cf9c8d9c Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Thu, 13 Jun 2024 12:43:45 +0300 Subject: [PATCH] Update installation instructions based on David Nuzik's feedback, thank you David! --- Installation-from-package.md | 40 ++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/Installation-from-package.md b/Installation-from-package.md index b695833..f7232b2 100644 --- a/Installation-from-package.md +++ b/Installation-from-package.md @@ -16,22 +16,40 @@ Or to install the devel package you can install `libvectorscan-dev` package: $ sudo apt install libvectorscan-dev ``` -## Fedora - -TBD - -## Suse - -TBD +At this time only Debian 12 offers either vectorscan package. Ubuntu only offers the vectorscan packages +for arm64 CPU architectures. ## Alpine -TBD +On recent Alpine systems, vectorscan should be directly available for installation via the community repository: -## MacOS X (HomeBrew) +``` +$ sudo apk add vectorscan +``` + +Or to install the devel package you can install `libvectorscan-dev` package: + +``` +$ sudo apk add vectorscan-dev +``` + +The community repository is not enabled by default on Alpine, you may need to uncomment the repo in the `/etc/apk/repositories` file and then run apk update before you can install vectorscan. + +## openSUSE + +``` +$ sudo zypper install libhs5-vectorscan5 +``` + +Or to install the devel package you can install `vectorscan-devel` package: + +``` +$ sudo zypper install vectorscan-devel +``` + +## MacOS X (Homebrew) This assumes an existing HomeBrew installation ``` -% brew show vectorscan -``` \ No newline at end of file +% brew install vectorscan \ No newline at end of file