summaryrefslogtreecommitdiff
path: root/extra/baloo-widgets
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-04-19 04:00:43 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-04-19 04:00:43 +0000
commit4d8724d2ae72ab2ea20a9ad299dd36f33bda4658 (patch)
tree5e022d124eb60b93d19e96a0d9c0e8532be87a6e /extra/baloo-widgets
parentf8a4eefb2bb008f302349db07da4a75e746a1aeb (diff)
Sat Apr 19 03:57:19 UTC 2014
Diffstat (limited to 'extra/baloo-widgets')
-rw-r--r--extra/baloo-widgets/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/baloo-widgets/PKGBUILD b/extra/baloo-widgets/PKGBUILD
new file mode 100644
index 000000000..5283e0d74
--- /dev/null
+++ b/extra/baloo-widgets/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 211350 2014-04-18 18:01:34Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=baloo-widgets
+pkgver=4.13.0
+pkgrel=1
+pkgdesc="Widgets for Baloo"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kdelibs/baloo-widgets'
+license=('LGPL')
+depends=('baloo')
+makedepends=('cmake' 'automoc4')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('3b677dbaaba3fc77500f5fb376c93e52369de93e')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}