Created
October 27, 2015 12:35
-
-
Save nowrep/f08d3f538a4bf3efea0b to your computer and use it in GitHub Desktop.
quicklaunch applet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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