Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Libraries #22

Closed
Raiper34 opened this issue Sep 10, 2016 · 2 comments
Closed

Libraries #22

Raiper34 opened this issue Sep 10, 2016 · 2 comments

Comments

@Raiper34
Copy link

Hi,

Do I have to own libraries (pngquant...) on my server when I want to use your lirbary, or do you included it into your library?

Thanks.

@n2j7
Copy link

n2j7 commented Sep 16, 2016

Try this

curl -fsSL https://sourceforge.net/projects/libpng/files/libpng16/1.6.25/libpng-1.6.25.tar.gz/download -o libpng-1.6.25.tar.gz
tar -xvpzf libpng-1.6.25.tar.gz
cd libpng-1.6.25/
./configure --prefix=/usr
make install
cd ../
rm -rf libpng-1.6.25/
rm -f libpng-1.6.25.tar.gz
curl -fsSL https://github.com/pornel/pngquant/archive/2.6.0.tar.gz -o pngquant-2.6.0.tar.gz
tar -xvpzf pngquant-2.6.0.tar.gz
cd pngquant-2.6.0
./configure --prefix=/usr --with-libpng=/usr
make
make install
cd ../
rm -rf pngquant-2.6.0/
rm -f pngquant-2.6.0.tar.gz

@psliwa
Copy link
Owner

psliwa commented Dec 4, 2016

@Raiper34 You need to install such dependencies on your own. In Vagrantfile is an example of library installation.

@psliwa psliwa closed this as completed Dec 4, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants