pkgname=diffutils pkgver=3.10 pkgrel=1 pkgdesc="Utility programs used for creating patch files" arch=('x86_64') url="https://www.gnu.org/software/diffutils/" license=('GPL-3.0-or-later') depends=('glibc' 'bash') source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz) sha256sums=(90e5e93cc724e4ebe12ede80df1634063c7a855692685919bfe60b556c9bd09e) build() { cd ${pkgname}-${pkgver} local configure_args=( ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }