diff --git a/qca/mingw-w64/PKGBUILD b/qca/mingw-w64/PKGBUILD new file mode 100644 index 00000000..305b096f --- /dev/null +++ b/qca/mingw-w64/PKGBUILD @@ -0,0 +1,64 @@ +# $Id$ +# Maintainer: Martchus +# Contributor: Antonio Rojas +# Contributor: Andrea Scarpino +# Contributor: Pierre Schmitz + +pkgname='mingw-w64-qca-qt5' +pkgver=2.1.3 +pkgrel=1 +pkgdesc='Qt Cryptographic Architecture' +arch=('any') +url='https://userbase.kde.org/QCA' +license=(LGPL) +depends=('mingw-w64-qt5-base') +makedepends=('mingw-w64-cmake') +options=('!strip' '!buildflags' 'staticlibs') +source=("http://download.kde.org/stable/qca/$pkgver/src/qca-$pkgver.tar.xz") +md5sums=('5019cc29efcf828681cd93164238ce26') + +_architectures="i686-w64-mingw32 x86_64-w64-mingw32" + +prepare() { + true +} + +build() { + unset LDFLAGS + for _arch in ${_architectures}; do + mkdir "build-${_arch}" && pushd "build-${_arch}" + ${_arch}-cmake \ + -DCMAKE_INSTALL_PREFIX=/usr/${_arch} \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTS=OFF \ + -DQCA_INSTALL_IN_QT_PREFIX=ON \ + -DOPENSSL_INCLUDE_DIR=/usr/${_arch}/include \ + -DOPENSSL_SSL_LIBRARY=/usr/${_arch}/lib/libssl.dll.a \ + -DOPENSSL_CRYPTO_LIBRARY=/usr/${_arch}/lib/libcrypto.dll.a \ + ../qca-$pkgver + make + popd + done +} + +package() { + for _arch in ${_architectures}; do + pushd "build-${_arch}" + make DESTDIR="$pkgdir" install + # strip binaries + find "${pkgdir}/usr/${_arch}/lib" -maxdepth 1 -name "*.dll" -exec rm {} \; + [ "$NO_STATIC_EXECUTABLES" -a "${_config##*=}" = static -o "$NO_EXECUTABLES" ] && \ + find "${pkgdir}/usr/${_arch}" -name "*.exe" -exec rm {} \; || \ + find "${pkgdir}/usr/${_arch}" -name "*.exe" -exec ${_arch}-strip --strip-all {} \; + find "${pkgdir}/usr/${_arch}" -name "*.dll" -exec ${_arch}-strip --strip-unneeded {} \; + find "${pkgdir}/usr/${_arch}" -name "*.a" -exec ${_arch}-strip -g {} \; + [[ -d "${pkgdir}/usr/${_arch}/lib/qt/bin/" ]] && \ + find "${pkgdir}/usr/${_arch}/lib/qt/bin/" -exec strip --strip-all {} \; + find "${pkgdir}/usr/${_arch}/lib/" -iname "*.so.$pkgver" -exec strip --strip-unneeded {} \; + # remove manual + rm -r "${pkgdir}/usr/${_arch}/share" + popd + done +} + +