minecraft-pi-docker/build/build-libpng12.sh

17 lines
207 B
Bash
Raw Normal View History

2020-09-25 12:43:53 -04:00
#!/bin/sh
set -e
git clone --depth 1 https://git.code.sf.net/p/libpng/code libpng -b libpng12
cd libpng
2020-11-25 21:17:40 -05:00
./configure --prefix /usr
2020-09-25 12:43:53 -04:00
make -j$(nproc)
2020-12-04 16:27:28 -05:00
make install DESTDIR=/app/export
2020-09-25 12:43:53 -04:00
cd ../
2020-11-25 21:17:40 -05:00
2020-09-25 12:43:53 -04:00
rm -rf libpng