mirror of
https://github.com/minetest/minetest_android_deps.git
synced 2025-01-21 20:59:37 +00:00
14 lines
245 B
Bash
14 lines
245 B
Bash
#!/bin/bash -e
|
|
ver=1.17
|
|
|
|
download () {
|
|
get_tar_archive libiconv "https://ftp.gnu.org/gnu/libiconv/libiconv-${ver}.tar.gz"
|
|
}
|
|
|
|
build () {
|
|
$srcdir/libiconv/configure --host=$CROSS_PREFIX \
|
|
--disable-shared --enable-static
|
|
|
|
make_install_copy
|
|
}
|