mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
33 lines
981 B
Bash
33 lines
981 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-browsefirefoxbookmarks
|
|
pkgver=0.2.4
|
|
pkgrel=1
|
|
pkgdesc="A Plasma Runner that matches Firefox's bookmarks."
|
|
url="http://kde-apps.org/content/show.php/Browse+Firefox+Bookmarks?content=141042"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('kde-workspace>=4.6')
|
|
makedepends=('cmake' 'automoc4')
|
|
categories=('accessories')
|
|
source=("http://kde-look.org/CONTENT/content-files/141042-browsefirefoxbookmarks.tar.bz2")
|
|
md5sums=('c9f9155c92772c91dafd58888d637cd7')
|
|
|
|
build() {
|
|
cd ${srcdir}/plasma-runner-browsefirefoxbookmarks/
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release
|
|
make
|
|
}
|
|
package() {
|
|
cd ${srcdir}/plasma-runner-browsefirefoxbookmarks/build/
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|