pkgname=libtool pkgver=2.5.4 pkgrel=1 pkgdesc="A generic library support script" arch=('x86_64') url="https://www.gnu.org/software/libtool/" license=('LGPL-2.0-or-later WITH Libtool-exception') groups=('base-devel') depends=('glibc' 'bash' 'tar') makedepends=('gcc>=14.2.0') source=(https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz) sha256sums=(f81f5860666b0bc7d84baddefa60d1cb9fa6fceb2398cc3baca6afaa60266675) build() { cd ${pkgname}-${pkgver} local configure_args=( ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }