summaryrefslogtreecommitdiff
path: root/kde-unstable/kdegames-picmi/PKGBUILD
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/kdegames-picmi/PKGBUILD
parentf48f6c82e23a3bacb8a0952c2d2cf9af1e6bf42d (diff)
Thu Nov 22 02:27:52 PST 2012
Diffstat (limited to 'kde-unstable/kdegames-picmi/PKGBUILD')
-rw-r--r--kde-unstable/kdegames-picmi/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/kde-unstable/kdegames-picmi/PKGBUILD b/kde-unstable/kdegames-picmi/PKGBUILD
new file mode 100644
index 000000000..4d3ea8e9e
--- /dev/null
+++ b/kde-unstable/kdegames-picmi/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 171873 2012-11-21 22:04:46Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=kdegames-picmi
+pkgver=4.9.80
+pkgrel=2
+pkgdesc="A nonogram logic game for KDE"
+url="http://kde.org/applications/games/picmi/"
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdegames')
+depends=('kdebase-runtime' 'libkdegames')
+makedepends=('cmake' 'automoc4')
+replaces=('picmi')
+conflicts=('picmi')
+install=${pkgname}.install
+source=("http://download.kde.org/unstable/${pkgver}/src/picmi-${pkgver}.tar.xz")
+sha1sums=('03b8385e5b1de2c6fb51c9cf40e3a1473eb21db9')
+
+build() {
+ mkdir build
+ cd build
+ cmake ../picmi-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}