mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
30 lines
923 B
Bash
30 lines
923 B
Bash
# contributor: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=kdeplasma-addons-runners-browsechromiumbookmarks
|
|
pkgver=0.3
|
|
pkgrel=1
|
|
pkgdesc="A runner that integrates chromium bookmarks into krunner."
|
|
url="http://kde-look.org/content/show.php/Browse+Chromium+Bookmarks?content=137685"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('kde-workspace>=4.6')
|
|
makedepends=('cmake' 'automoc4' 'qjson')
|
|
categories=('accessories')
|
|
source=("http://kde-look.org/CONTENT/content-files/137685-browsechromiumbookmarks.tar.bz2")
|
|
md5sums=('61de92ce6f62affa478e74db77f93aa7')
|
|
|
|
build() {
|
|
cd ${srcdir}/plasma-runner-browsechromiumbookmarks/
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
package() {
|
|
cd ${srcdir}/plasma-runner-browsechromiumbookmarks/build/
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|