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
|
|
|
|
|
2021-02-21 14:53:17 -05:00
|
|
|
./configure
|
2020-09-25 12:43:53 -04:00
|
|
|
|
|
|
|
make -j$(nproc)
|
2021-02-21 14:53:17 -05:00
|
|
|
|
|
|
|
mkdir -p ../minecraft-pi/lib
|
|
|
|
cp -L .libs/libpng12.so.0 ../minecraft-pi/lib
|
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
|