summaryrefslogtreecommitdiff
path: root/extra/kemoticons/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/kemoticons/PKGBUILD')
-rw-r--r--extra/kemoticons/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/extra/kemoticons/PKGBUILD b/extra/kemoticons/PKGBUILD
new file mode 100644
index 000000000..0228636ee
--- /dev/null
+++ b/extra/kemoticons/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 212935 2014-05-16 22:31:33Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=kemoticons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KEmoticons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kemoticons'
+license=('LGPL')
+depends=('karchive' 'kservice')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz")
+md5sums=('7860bb4b9d89f205fe9ad258b79534b5')
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DLIB_INSTALL_DIR=lib \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}