# Maintainer: Mladen Milinkovic _pkgname=kbookmarks pkgname=mingw-w64-$_pkgname pkgver=5.76.0 pkgrel=1 arch=(any) pkgdesc="Support for bookmarks and the XBEL format (mingw-w64)" license=("LGPL") depends=(mingw-w64-kxmlgui) groups=(mingw-w64-kf5) makedepends=(mingw-w64-extra-cmake-modules mingw-w64-qt5-tools) options=(staticlibs !strip !buildflags) url="https://community.kde.org/Frameworks" source=("http://download.kde.org/stable/frameworks/${pkgver%.*}/$_pkgname-${pkgver}.tar.xz"{,.sig}) sha256sums=('ac5416f1ac21cb9e9fdf72a95de855a9891cea0ed7e1436a93c019b6c45af2af' 'SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure _architectures="i686-w64-mingw32 x86_64-w64-mingw32" build() { cd $_pkgname-$pkgver for _arch in ${_architectures}; do unset LDFLAGS mkdir "build-${_arch}" && pushd "build-${_arch}" ${_arch}-cmake \ -DCMAKE_BUILD_TYPE=Release \ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ -DBUILD_TESTING=OFF \ .. make popd done } package() { for _arch in ${_architectures}; do cd "${srcdir}/${pkgname#mingw-w64-}-$pkgver/build-${_arch}" make DESTDIR="$pkgdir" install find "$pkgdir/usr/${_arch}" -name '*.dll' -exec ${_arch}-strip --strip-unneeded {} \; find "$pkgdir/usr/${_arch}" -name '*.a' -o -name '*.dll' | xargs ${_arch}-strip -g rm -rf "$pkgdir/usr/${_arch}/share" done }