mirror of
https://github.com/minetest/minetest_android_deps.git
synced 2025-01-21 20:59:37 +00:00
13 lines
224 B
Bash
13 lines
224 B
Bash
#!/bin/bash -e
|
|
png_ver=1.6.42
|
|
|
|
download () {
|
|
get_tar_archive libpng "https://download.sourceforge.net/libpng/libpng-${png_ver}.tar.gz"
|
|
}
|
|
|
|
build () {
|
|
$srcdir/libpng/configure --host=$CROSS_PREFIX
|
|
make
|
|
make_install_copy
|
|
}
|