# Maintainer: Antonio Rojas # Maintainer: Eric BĂ©langer # ALARM: Kevin Mihelich # - patch to explicitly link v5/v6 with libatomic pkgname=kdiff3 pkgver=0.9.98.git20190308 pkgrel=1 _commit=8df1172bf96ed1b9b72bb59313ca884b6ae4e052 pkgdesc="A KDE file comparator/merge tool" arch=(x86_64) url="https://kdiff3.sourceforge.net/" license=(GPL) depends=(kparts hicolor-icon-theme) makedepends=(extra-cmake-modules kdoctools git) source=(git://git.kde.org/kdiff3#commit=$_commit 0001-link-atomic.patch) sha256sums=('SKIP' 'cf937b439d988eeb65484cb6967be4b89574e48eed3efe53574842fb5c266e8b') prepare() { mkdir -p build if [[ $CARCH == "armv6h" || $CARCH == "arm" ]]; then cd $pkgname patch -p1 -i ../0001-link-atomic.patch fi } build() { cd build cmake ../$pkgname \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd build make DESTDIR="$pkgdir" install }