mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
30 lines
822 B
Bash
30 lines
822 B
Bash
|
pkgname=kdeplasma-applets-quickaccess
|
||
|
_realname=plasma-widget-quickaccess
|
||
|
pkgver=0.8.2_2
|
||
|
_realver=${pkgver//_/-}
|
||
|
pkgrel=1
|
||
|
pkgdesc='KDE Plasma widget for quick access to folders.'
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='http://kde-look.org/content/show.php/?content=134442'
|
||
|
license=('GPL2')
|
||
|
conflicts=('quickaccess-plasmoid')
|
||
|
depends=('kdebase-workspace' 'kdebase-plasma')
|
||
|
makedepends=('cmake' 'automoc4')
|
||
|
source=(http://kde-look.org/CONTENT/content-files/134442-plasma-widget-quickaccess-0.8.2-2.zip)
|
||
|
sha1sums=('e6858719b2f53468c9f88944022909a0cd8c920b')
|
||
|
|
||
|
build() {
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ../${_realname}-${_realver} \
|
||
|
-DCMAKE_BUILD_TYPE=Release \
|
||
|
-DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` \
|
||
|
-DQT_QMAKE_EXECUTABLE=qmake-qt4
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make DESTDIR=$pkgdir install
|
||
|
}
|