minecraft-pi-reborn/build/build-libpng12.sh
TheBrokenRail 0eb10dea7c
All checks were successful
minecraft-pi-docker/pipeline/head This commit looks good
Switch To 32-Bit Docker Image
2020-11-25 21:17:40 -05:00

17 lines
187 B
Bash
Executable File

#!/bin/sh
set -e
git clone --depth 1 https://git.code.sf.net/p/libpng/code libpng -b libpng12
cd libpng
./configure --prefix /usr
make -j$(nproc)
make install
cd ../
rm -rf libpng