pkgname=libxslt pkgver=1.1.42 pkgrel=1 pkgdesc="XML stylesheet transformation library" arch=('x86_64') url="https://gitlab.gnome.org/GNOME/libxslt/-/wikis/home" license=('custom:MIT') depends=('glibc' 'bash' 'libxml2' 'xz') makedepends=('python') source=(https://download.gnome.org/sources/libxslt/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) sha256sums=(85ca62cac0d41fc77d3f6033da9df6fd73d20ea2fc18b0a3609ffb4110e1baeb) build() { cd ${pkgname}-${pkgver} local configure_args=( --disable-static --docdir=/usr/share/doc/${pkgname}-${pkgver} ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }