Date: Tuesday, July 28, 2015 @ 19:35:04 Author: arojas Revision: 242583
Add baloo-widgets Added: baloo-widgets/ baloo-widgets/kde-unstable/ baloo-widgets/kde-unstable/PKGBUILD ----------+ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) Added: baloo-widgets/kde-unstable/PKGBUILD =================================================================== --- baloo-widgets/kde-unstable/PKGBUILD (rev 0) +++ baloo-widgets/kde-unstable/PKGBUILD 2015-07-28 17:35:04 UTC (rev 242583) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Andrea Scarpino <[email protected]> + +pkgname=baloo-widgets +pkgver=15.07.80 +pkgrel=1 +pkgdesc="A framework for searching and managing metadata" +arch=(i686 x86_64) +url='https://projects.kde.org/baloo-widgets' +license=(LGPL) +depends=(baloo) +makedepends=(extra-cmake-modules kdoctools) +source=("http://download.kde.org/unstable/applications/15.07.80/src/$pkgname-$pkgver.tar.xz") +md5sums=('aaf775b6c98a4c6ce183fe804c685cfc') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../$pkgname-$pkgver \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_INSTALL_DIR=lib + make +} + +package() { + cd build + make DESTDIR="$pkgdir" install +} +
