# Maintainer: Martchus # All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where # you also find the URL of a binary repository. _reponame=reflective-rapidjson pkgname=mingw-w64-reflective-rapidjson _name=${pkgname#mingw-w64-} pkgver=0.0.15 pkgrel=2 arch=('any') pkgdesc='Code generator for serializing/deserializing C++ objects to/from JSON using Clang and RapidJSON (mingw-w64)' license=('GPL') depends=('mingw-w64-crt' 'mingw-w64-c++utilities' 'mingw-w64-rapidjson' 'reflective-rapidjson') optdepends=("mingw-w64-boost: use Boost.Hana instead of code generator" "$_name-doc: API documentation") checkdepends=('mingw-w64-cppunit' 'mingw-w64-wine' 'mingw-w64-boost') makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'ninja') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz" https://github.com/Martchus/reflective-rapidjson/commit/7c8ef68155724417066bfaf694ce26834251a62e.patch) sha256sums=('1e253ca0c63c6432ede1b1d7ad6c828b93eeb47eb1843d7bdc09445be7c1bba6' SKIP) options=(!buildflags staticlibs !strip !emptydirs) _architectures=('i686-w64-mingw32' 'x86_64-w64-mingw32') _configurations=() [[ $NO_SHARED_LIBS ]] || _configurations+=('shared') [[ $NO_STATIC_LIBS ]] || _configurations+=('static') prepare() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" patch -p1 -i ../7c8ef68155724417066bfaf694ce26834251a62e.patch } build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" declare -A _config_flags=( [shared]=' -DBUILD_SHARED_LIBS:BOOL=ON ' [static]=' -DBUILD_SHARED_LIBS:BOOL=OFF -DCMAKE_FIND_LIBRARY_SUFFIXES:STRING=.a;.lib -DSTATIC_LINKAGE:BOOL=ON -DSTATIC_LIBRARY_LINKAGE:BOOL=ON ' ) for _arch in "${_architectures[@]}"; do for _cfg in "${_configurations[@]}"; do msg2 "${_arch}-${_cfg}" mkdir -p "build-${_arch}-${_cfg}" && pushd "build-${_arch}-${_cfg}" ${_arch}-cmake \ -G Ninja \ -DCMAKE_BUILD_TYPE:STRING='Release' \ -DCMAKE_INSTALL_PREFIX="/usr/${_arch}" \ -DCONFIGURATION_NAME:STRING="${_cfg}" \ -DCONFIGURATION_PACKAGE_SUFFIX:STRING="-${_cfg}" \ -DNO_GENERATOR:BOOL=ON \ -DENABLE_TARGETS_FOR_MINGW64_CROSS_PACKAGING:BOOL=ON \ -DVERSIONED_MINGW_LIBRARIES:BOOL=ON \ ${_config_flags[$_cfg]} \ ../ ninja popd done done } check() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" for _arch in "${_architectures[@]}"; do for _cfg in "${_configurations[@]}"; do msg2 "${_arch}-${_cfg}" pushd "build-${_arch}-${_cfg}" export WINEPATH="/usr/${_arch}/bin" WINEDEBUG=-all ninja check popd done done } package() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" for _arch in "${_architectures[@]}"; do for _cfg in "${_configurations[@]}"; do msg2 "${_arch}-${_cfg}" pushd "build-${_arch}-${_cfg}" DESTDIR="${pkgdir}" ninja install-mingw-w64-strip popd done done }