mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
931 B
Bash
29 lines
931 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=kdeplasma-addons-runners-browseoperabookmarks
|
|
pkgver=0.1.1
|
|
pkgrel=1
|
|
pkgdesc="A simple Plasma Runner to search among Opera's Bookmarks."
|
|
url="http://kde-apps.org/content/show.php/Browse+Opera+Bookmarks+Runner?content=140893"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('kdebase-workspace>=4.6')
|
|
makedepends=('cmake' 'automoc4')
|
|
categories=('accessories')
|
|
source=("http://kde-apps.org/CONTENT/content-files/140893-browseoperabookmarks.tar.bz2")
|
|
md5sums=('e114e36cbdf7ce682225cd1e70f4747e')
|
|
|
|
build() {
|
|
cd ${srcdir}/plasma-runner-browseoperabookmarks/
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|