pkgname=gawk version=5.4.0 build_no=1 upstream="${MIRROR_GNU_FTP}/gawk/gawk-${version}.tar.gz" makedepends=(autoconf make) depends=(mpfr glibc gmp) function do_configure { mkdir build/ cd build/ conf_flags=( --prefix=/usr --host=${DISTRO_TC} --disable-nls --disable-rpath ) ../configure "${conf_flags[@]}" } function do_build { cd build/ make -j$(nproc) } function do_install { cd build/ make DESTDIR=${DESTDIR} install }