Skip to content

Commit

Permalink
doc(readme): add linux support
Browse files Browse the repository at this point in the history
Signed-off-by: hackerchai <[email protected]>
  • Loading branch information
hackerchai committed Jul 18, 2024
1 parent 062c13a commit 5d8a810
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,49 @@ Dylib Installer is a tool for handling dylib directories and generating .pc file
- Copies library files to the target directory.
- Optionally copies header files to the target directory.

## Pre-requisites
You will need the following tools installed on your system to use Dylib Installer:
- pkg-config

### Installing pkg-config
If you are using macOS, you can install pkg-config using Homebrew:

```sh
brew install pkg-config
```

If you are using Linux, you can install pkg-config using your package manager:

- Debian/Ubuntu:

```sh
sudo apt-get install pkg-config
```

- Fedora:

```sh
sudo dnf install pkg-config
```

- CentOS/RHEL:

```sh
sudo yum install pkg-config
```

- Arch Linux:

```sh
sudo pacman -S pkg-config
```

- Alpine Linux:

```sh
apk add pkgconfig
```

## Installation

To install Dylib Installer, ensure you have Rust installed on your system. You can install the project from source or using `cargo install`:
Expand Down

0 comments on commit 5d8a810

Please sign in to comment.