pkgname=libunwind pkgver=1.8.1 pkgrel=1 pkgdesc="Determine and manipulate the call-chain of a program" arch=('x86_64') url="ttps://www.nongnu.org/libunwind" license=('MIT') depends=('glibc' 'xz' 'zlib') source=(https://github.com/libunwind/libunwind/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz) sha256sums=(ddf0e32dd5fafe5283198d37e4bf9decf7ba1770b6e7e006c33e6df79e6a6157) build() { cd ${pkgname}-${pkgver} local configure_args=( --disable-static ${configure_options} ) ./configure ${configure_args[@]} make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }