summaryrefslogtreecommitdiff
path: root/kde-unstable/libkdegames
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/libkdegames
parentf48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (diff)
Thu Nov 22 02:27:52 PST 2012
Diffstat (limited to 'kde-unstable/libkdegames')
-rw-r--r--kde-unstable/libkdegames/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/kde-unstable/libkdegames/PKGBUILD b/kde-unstable/libkdegames/PKGBUILD
new file mode 100644
index 000000000..893d769c2
--- /dev/null
+++ b/kde-unstable/libkdegames/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 171740 2012-11-21 18:31:46Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=libkdegames
+pkgver=4.9.80
+pkgrel=1
+pkgdesc="Common code and data for many KDE games"
+url="https://projects.kde.org/projects/kde/kdegames/libkdegames"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+depends=('kdelibs' 'openal')
+makedepends=('cmake' 'automoc4')
+replaces=('kdegames-libkdegames')
+conflicts=('kdegames-libkdegames')
+source=("http://download.kde.org/unstable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('ddeae85ab3a6ec74588471897acd7f017c2df823')
+
+build() {
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}