aisl/README.md

37 lines
534 B
Markdown
Raw Normal View History

2019-02-23 21:06:34 +01:00
# AISL
Asynchronous Internet Server Library
## Installation on CentOS 7 / RedHat 7
1. Add repository
```
2019-02-23 21:18:12 +01:00
sudo curl -o /etc/yum.repos.d/lowenware.repo https://lowenware.com/rpm/redhat-7/lowenware.repo
2019-02-23 21:06:34 +01:00
```
2. Import GPG key
```
2019-02-23 21:18:12 +01:00
sudo rpm --import https://lowenware.com/rpm/RPM-GPG-KEY-Lowenware
2019-02-23 21:06:34 +01:00
```
3. Install
```
sudo yum install aisl aisl-devel
```
## Installation from sources on any distro
1. Configuration
```
cmake -DCMAKE_INSTALL_PREFIX=/usr/local
```
2. Compilation
```
make
```
3. Installation
```
sudo make install
```