# Maintainer of AUR version: seth # Contributor: xantares # This version has static libs enabled and the correct architecture (in contrast to the AUR version). pkgname=mingw-w64-zstd _pkgname=zstd pkgver=1.5.4 pkgrel=2 pkgdesc="Zstandard - Fast real-time compression algorithm (mingw-w64)" url="https://facebook.github.io/zstd/" arch=('any') license=('BSD' 'GPL2') depends=('mingw-w64-crt') makedepends=('mingw-w64-cmake') options=('staticlibs' '!buildflags' '!strip') source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/facebook/${_pkgname}/archive/refs/tags/v${pkgver}.tar.gz") sha256sums=('35ad983197f8f8eb0c963877bf8be50490a0b3df54b4edeb8399ba8a8b2f60a4') _architectures="i686-w64-mingw32 x86_64-w64-mingw32" build() { cd "${srcdir}/${_pkgname}-${pkgver}" export CFLAGS+=' -ffat-lto-objects' export CXXFLAGS+=' -ffat-lto-objects' for _arch in ${_architectures}; do mkdir -p "build-${_arch}" && pushd "build-${_arch}" ${_arch}-cmake -S ../build/cmake \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr/${_arch} \ -DCMAKE_INSTALL_LIBDIR=lib \ -DZSTD_BUILD_CONTRIB=OFF \ -DZSTD_BUILD_STATIC=ON \ -DZSTD_BUILD_SHARED=ON \ -DZSTD_BUILD_TESTS=OFF \ -DZSTD_PROGRAMS_LINK_SHARED=OFF \ -DZSTD_BUILD_PROGRAMS=OFF make popd done } package() { cd "${srcdir}/${_pkgname}-${pkgver}" for _arch in ${_architectures}; do pushd "build-${_arch}" make DESTDIR="${pkgdir}" install ${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll ${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a popd done }