desktop/plasma5-applets-nowdock/PKGBUILD
2016-10-03 00:21:13 +01:00

27 lines
744 B
Bash

pkgname=plasma5-applets-nowdock
pkgver=0.3.2
pkgrel=1
pkgdesc="A pure qml plasmoid or kwin script that creates a mac style effect for tasks in Plasma 5"
arch=('x86_64')
url="https://github.com/psifidotos/plasmaqmldock"
license=('GPL')
group=('plasma5-applets')
depends=('plasma-workspace' 'qt5-graphicaleffects')
makedepends=('extra-cmake-modules')
source=("https://github.com/psifidotos/nowdock-plasmoid/archive/v${pkgver}.tar.gz")
sha256sums=('6d7993185ac634c244fc35fd2b815a47652aeab3e15a903250686615dba62578')
build() {
cd ${srcdir}/nowdock-plasmoid-${pkgver}
mkdir -p build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd ${srcdir}/nowdock-plasmoid-${pkgver}/build
make DESTDIR=${pkgdir} install
}