pkgname=libtool version=2.5.4 build_no=1 upstream="${MIRROR_GNU_FTP}/libtool/libtool-${version}.tar.gz" function do_configure { mkdir build/ cd build/ conf_flags=( --prefix=/usr --host=${DISTRO_TC} ) ../configure "${conf_flags[@]}" } function do_build { cd build/ make -j$(nproc) } function do_install { cd build/ make DESTDIR=${DESTDIR} install }