Date: Saturday, March 25, 2017 @ 01:00:36 Author: arojas Revision: 291378
archrelease: copy kde-unstable to kde-unstable-x86_64 Added: kmines/repos/kde-unstable-x86_64/ kmines/repos/kde-unstable-x86_64/PKGBUILD (from rev 291377, kmines/kde-unstable/PKGBUILD) ----------+ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) Copied: kmines/repos/kde-unstable-x86_64/PKGBUILD (from rev 291377, kmines/kde-unstable/PKGBUILD) =================================================================== --- kde-unstable-x86_64/PKGBUILD (rev 0) +++ kde-unstable-x86_64/PKGBUILD 2017-03-25 01:00:36 UTC (rev 291378) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kmines +pkgver=17.03.80 +pkgrel=1 +pkgdesc="The classic Minesweeper game" +url="https://kde.org/applications/games/kmines/" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL' 'FDL') +groups=('kde-applications' 'kdegames') +depends=('libkdegames' 'hicolor-icon-theme') +makedepends=('extra-cmake-modules' 'python' 'kdoctools') +conflicts=('kdegames-kmines') +replaces=('kdegames-kmines') +source=("https://download.kde.org/stable/applications/${pkgver}/src/kmines-${pkgver}.tar.xz"{,.sig}) +sha256sums=('e63e98cb5192c593c810afdd2031d10a363e66b88be37da2d0bc6533431bddac' + 'SKIP') +validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid <aa...@kde.org> + +build() { + mkdir -p build + cd build + cmake ../$pkgname-$pkgver \ + -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +}