summaryrefslogtreecommitdiff
path: root/kde-unstable/libkmahjongg
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-11-22 02:31:09 -0800
committerroot <root@rshg054.dnsready.net>2012-11-22 02:31:09 -0800
commit38ea2e71952c00f18230ed0e691532aadff4e2c1 (patch)
treebc1c7cfd697773062d53a0a23b35afdb0fc775c2 /kde-unstable/libkmahjongg
parentf48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (diff)
Thu Nov 22 02:27:52 PST 2012
Diffstat (limited to 'kde-unstable/libkmahjongg')
-rw-r--r--kde-unstable/libkmahjongg/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/kde-unstable/libkmahjongg/PKGBUILD b/kde-unstable/libkmahjongg/PKGBUILD
new file mode 100644
index 000000000..17cb7af63
--- /dev/null
+++ b/kde-unstable/libkmahjongg/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 171741 2012-11-21 18:32:34Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=libkmahjongg
+pkgver=4.9.80
+pkgrel=1
+pkgdesc="Common code, backgrounds and tile sets for games using Mahjongg tiles"
+url="https://projects.kde.org/projects/kde/kdegames/libmahjongg"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegames-libkmahjongg')
+conflicts=('kdegames-libkmahjongg')
+source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('13fda308bc5371eb48f5535a34f0f6edb9319659')
+
+build() {
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}