diff --git a/mingw-w64-python-zstandard/PKGBUILD b/mingw-w64-python-zstandard/PKGBUILD new file mode 100644 index 0000000000..e626038ca6 --- /dev/null +++ b/mingw-w64-python-zstandard/PKGBUILD @@ -0,0 +1,45 @@ +# Maintainer: Sarah Ottinger + +_realname=zstandard +pkgbase=mingw-w64-python-${_realname} +pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") +pkgver=0.14.1 +pkgrel=1 +pkgdesc='Python bindings to the Zstandard (zstd) compression library (mingw-w64)' +arch=('any') +url="https://github.com/indygreg/python-zstandard" +license=('BSD') +depends=("${MINGW_PACKAGE_PREFIX}-python") +makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools") +checkdepends=("${MINGW_PACKAGE_PREFIX}-python-hypothesis") +optdepends=("${MINGW_PACKAGE_PREFIX}-python-cffi") +options=('!emptydirs') +source=("https://github.com/indygreg/python-zstandard/archive/$pkgver.tar.gz") +sha256sums=('15d3b92e1b5aad5af7b93830825291821831baa6a2a0bf1b389b6171d4f8114f') + +prepare() { + cd "$srcdir" + rm -rf python-build-${CARCH} | true + cp -r "python-${_realname}-$pkgver" "python-build-${CARCH}" +} + +build() { + msg "Python build for ${CARCH}" + cd "${srcdir}/python-build-${CARCH}" + sed -i 's,if compiler.compiler_type == "unix",if compiler.compiler_type == "mingw32",g' make_cffi.py + ${MINGW_PREFIX}/bin/python setup.py build_ext +} + +check() { + cd "${srcdir}/python-build-${CARCH}" + ${MINGW_PREFIX}/bin/python setup.py build_ext --inplace | warning "Tests failed" + ${MINGW_PREFIX}/bin/python setup.py test | warning "Tests failed" +} + +package() { + cd "${srcdir}/python-build-${CARCH}" + MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \ + ${MINGW_PREFIX}/bin/python setup.py install --prefix=${MINGW_PREFIX} \ + --root="${pkgdir}" --optimize=1 --skip-build + install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" +}