1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-03-27 20:30:27 +02:00

Update instalation from source docs

This commit is contained in:
DarthSim 2020-07-01 17:10:09 +06:00
parent cbc1378f98
commit bb695fa2c4

View File

@ -64,6 +64,31 @@ brew install imgproxy
## From the source ## From the source
You can get imgproxy source by clonning the GitHub repo:
```bash
git clone https://github.com/imgproxy/imgproxy.git
cd imgproxy
```
...or by downloading the source tarball:
```bash
mkdir imgproxy
cd imgproxy
curl -Ls https://github.com/imgproxy/imgproxy/archive/master.tar.gz \
| tar -xz --strip-components 1 -C .
```
You can also download the specific version:
```bash
mkdir imgproxy
cd imgproxy
curl -Ls https://github.com/imgproxy/imgproxy/archive/v2.13.1.tar.gz \
| tar -xz --strip-components 1 -C .
```
### Ubuntu ### Ubuntu
First, install [libvips](https://github.com/libvips/libvips). First, install [libvips](https://github.com/libvips/libvips).
@ -89,18 +114,16 @@ sudo apt-get install golang-go
And finally, install imgproxy itself: And finally, install imgproxy itself:
```bash ```bash
GO111MODULE=on \ CGO_LDFLAGS_ALLOW="-s|-w" \
CGO_LDFLAGS_ALLOW="-s|-w" \ go build -o /usr/local/bin/imgproxy
go get -u github.com/imgproxy/imgproxy/v2
``` ```
### macOS + Homebrew ### macOS + Homebrew
```bash ```bash
brew install vips go brew install vips go
GO111MODULE=on \ PKG_CONFIG_PATH="$(brew --prefix libffi)/lib/pkgconfig" \
PKG_CONFIG_PATH="$(brew --prefix libffi)/lib/pkgconfig" \
CGO_LDFLAGS_ALLOW="-s|-w" \ CGO_LDFLAGS_ALLOW="-s|-w" \
CGO_CFLAGS_ALLOW="-Xpreprocessor" \ CGO_CFLAGS_ALLOW="-Xpreprocessor" \
go get -u github.com/imgproxy/imgproxy/v2 go build -o /usr/local/bin/imgproxy
``` ```