# Maintainer: Vlad Zagorodniy pkgname=kwin-effects-disappear2 pkgver=1.4 pkgrel=1 pkgdesc="KWin effect that animates the disappearing of windows" arch=('x86_64') url="https://github.com/zzag/kwin-effects-disappear2" license=('GPL3') depends=(kwin) makedepends=(extra-cmake-modules) source=(${pkgname}-${pkgver}.tar.gz::https://github.com/zzag/${pkgname}/archive/${pkgver}.tar.gz) sha256sums=('22f53bd57356d1831762a1e20855cda9d111adcf26941b1a728e36afd568e116') prepare() { mkdir -p build } build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib make } package() { cd build make DESTDIR="$pkgdir" install }