pkgname=gettext version=1.0 build_no=1 upstream="${MIRROR_GNU_FTP}/gettext/gettext-${version}.tar.gz" function do_configure { mkdir build/ cd build/ conf_flags=( --prefix=/usr --host=${DISTRO_TC} --disable-nls --disable-rpath --without-selinux --without-libsmack ) ../configure "${conf_flags[@]}" } function do_build { cd build/ make -j$(nproc) } function do_install { cd build/ make DESTDIR=${DESTDIR} install }