Skip to content

Instantly share code, notes, and snippets.

@nowrep
Created October 27, 2015 12:35
Show Gist options
  • Save nowrep/f08d3f538a4bf3efea0b to your computer and use it in GitHub Desktop.
Save nowrep/f08d3f538a4bf3efea0b to your computer and use it in GitHub Desktop.
quicklaunch applet
# Quicklaunch applet
pkgname=kdeplasma-applets-quicklaunch
pkgver=1.0
pkgrel=1
pkgdesc="Quicklaunch applet for Plasma5"
arch=('i686' 'x86_64')
url="https://kde.org"
license=('GPL')
depends=('plasma-framework' 'plasma-workspace' 'kdeclarative' 'kio')
makedepends=('extra-cmake-modules')
source=('git://anongit.kde.org/scratch/drosca/quicklaunch-qml.git')
md5sums=('SKIP')
prepare() {
mkdir -p build
}
build() {
cd build
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_INSTALL_DIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
../quicklaunch-qml
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment