summaryrefslogtreecommitdiff
path: root/extra/kscreen/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/kscreen/PKGBUILD')
-rw-r--r--extra/kscreen/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/extra/kscreen/PKGBUILD b/extra/kscreen/PKGBUILD
new file mode 100644
index 000000000..ff0a6b34a
--- /dev/null
+++ b/extra/kscreen/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 188671 2013-06-17 16:27:52Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: birdflesh <antkoul at gmail dot com>
+
+pkgname=kscreen
+pkgver=1.0
+pkgrel=1
+pkgdesc="KDE's screen management software"
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/kscreen'
+license=('GPL' 'LGPL')
+depends=('kdebase-runtime' "libkscreen>=${pkgver}")
+makedepends=('cmake' 'automoc4')
+install=$pkgname.install
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('52a0fef238ed71c08ee853f55e53f8bb')
+
+prepare() {
+ mkdir build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DQT_QMAKE_EXECUTABLE=qmake-qt4 \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}