Except the provides in libc++ for backwards compat. No rebuilds now, as that's not worth the resources.
60 lines
1.9 KiB
Bash
60 lines
1.9 KiB
Bash
# Contributor: Mehdi Chinoune <mehdi.chinoune@hotmail.com>
|
|
# Contributor: Justin Caselman <justin.caselman@keysight.com>
|
|
|
|
_realname=cppdap
|
|
pkgbase=mingw-w64-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-${_realname}")
|
|
_pkgver=1.65
|
|
pkgver=${_pkgver/-/}
|
|
# tags are missing, see https://github.com/google/cppdap/issues/132
|
|
_commit="37c744c294cbb24943a3913bbb67860d1609008c"
|
|
pkgrel=1
|
|
pkgdesc="C++ library for the Debug Adapter Protocol (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url='https://github.com/google/cppdap'
|
|
msys2_repository_url=${url}
|
|
msys2_references=(
|
|
'purl: pkg:github/google/cppdap'
|
|
)
|
|
license=('spdx:Apache-2.0')
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-cc"
|
|
"${MINGW_PACKAGE_PREFIX}-cmake"
|
|
"${MINGW_PACKAGE_PREFIX}-ninja"
|
|
"${MINGW_PACKAGE_PREFIX}-jsoncpp"
|
|
"git")
|
|
depends=("${MINGW_PACKAGE_PREFIX}-cc-libs")
|
|
source=("${_realname}"::"git+${msys2_repository_url}.git#commit=${_commit}")
|
|
sha256sums=('3984fe87c3895b36db7bd2677602aed172f4587e517b38429efa53de7d47a303')
|
|
|
|
build() {
|
|
mkdir -p "${srcdir}/build-${MSYSTEM}" && cd "${srcdir}/build-${MSYSTEM}"
|
|
|
|
declare -a extra_config
|
|
if check_option "debug" "n"; then
|
|
extra_config+=("-DCMAKE_BUILD_TYPE=Release")
|
|
else
|
|
extra_config+=("-DCMAKE_BUILD_TYPE=Debug")
|
|
fi
|
|
|
|
LDFLAGS+=" -Wl,--export-all-symbols" \
|
|
MSYS2_ARG_CONV_EXCL="-DCMAKE_INSTALL_PREFIX=" \
|
|
"${MINGW_PREFIX}"/bin/cmake.exe \
|
|
-GNinja \
|
|
-DCMAKE_INSTALL_PREFIX="${MINGW_PREFIX}" \
|
|
"${extra_config[@]}" \
|
|
-DCPPDAP_USE_EXTERNAL_JSONCPP_PACKAGE=ON \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
../${_realname}
|
|
|
|
"${MINGW_PREFIX}"/bin/cmake.exe --build .
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/build-${MSYSTEM}"
|
|
|
|
DESTDIR="${pkgdir}" "${MINGW_PREFIX}"/bin/cmake.exe --install .
|
|
|
|
install -Dm644 "${srcdir}/${_realname}/LICENSE" "${pkgdir}${MINGW_PREFIX}/share/licenses/${_realname}/LICENSE"
|
|
}
|