diff options
author | root <root@rshg054.dnsready.net> | 2013-02-09 00:07:22 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-09 00:07:22 -0800 |
commit | e9c244cac8e5dc1c59c7e8b7bc885fef04224b70 (patch) | |
tree | 64f1532d7e6e652c2ea5a0bb5efd7ea36f431535 /extra/nepomuk-widgets/PKGBUILD | |
parent | 7c92c5fcfb5653f63243842299e413672653d1ad (diff) |
Sat Feb 9 00:07:22 PST 2013
Diffstat (limited to 'extra/nepomuk-widgets/PKGBUILD')
-rw-r--r-- | extra/nepomuk-widgets/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/nepomuk-widgets/PKGBUILD b/extra/nepomuk-widgets/PKGBUILD new file mode 100644 index 000000000..4e132674f --- /dev/null +++ b/extra/nepomuk-widgets/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 177642 2013-02-08 08:56:00Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=nepomuk-widgets +pkgver=4.10.0 +pkgrel=1 +pkgdesc="The Library containing the Nepomuk Widgets" +url="https://projects.kde.org/projects/kde/kdelibs/nepomuk-widgets" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +depends=('nepomuk-core') +makedepends=('cmake' 'automoc4') +source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") +sha1sums=('8c6029bb56364c28398c516f4034c484e0ea31e0') + +build() { + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DKDE4_BUILD_TESTS=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} |