build.sh: Reimplement from scratch

This version is much more simple. And probably will work fine under
FreeBSD and OpenBSD.

Closes #316.
This commit is contained in:
fox.cpp 2020-12-06 02:21:49 +03:00
parent 1bfaa3995b
commit 4ec6eb2d31
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
3 changed files with 150 additions and 554 deletions

View file

@ -6,7 +6,7 @@ You need C toolchain, Go toolchain and Make:
On Debian-based system this should work:
```
apt-get install golang-1.14 gcc libc6-dev make
apt-get install golang-1.15 gcc libc6-dev make
```
Additionally, if you want manual pages, you should also have scdoc installed.
@ -30,23 +30,21 @@ export PATH="$PWD/go/bin:$PATH"
1. Clone repository
```
git clone https://github.com/foxcpp/maddy.git
cd maddy
$ git clone https://github.com/foxcpp/maddy.git
$ cd maddy
```
3. Switch to the corresponding release.
e.g.
3. Select the appropriate version to build:
```
git checkout v0.4.0
```
or to in-development version:
```
git checkout dev
$ git checkout v0.4.0 # a specific release
$ git checkout master # next bugfix release
$ git checkout dev # next feature release
```
2. Build & install it
```
./build.sh
$ ./build.sh
# ./build.sh install
```
3. Have fun!