Date: Friday, July 21, 2017 @ 19:56:00 Author: arojas Revision: 301027
archrelease: copy kde-unstable to kde-unstable-x86_64 Added: picmi/repos/kde-unstable-x86_64/ picmi/repos/kde-unstable-x86_64/PKGBUILD (from rev 301026, picmi/kde-unstable/PKGBUILD) ----------+ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) Copied: picmi/repos/kde-unstable-x86_64/PKGBUILD (from rev 301026, picmi/kde-unstable/PKGBUILD) =================================================================== --- kde-unstable-x86_64/PKGBUILD (rev 0) +++ kde-unstable-x86_64/PKGBUILD 2017-07-21 19:56:00 UTC (rev 301027) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=picmi +pkgver=17.07.80 +pkgrel=1 +pkgdesc="A nonogram logic game for KDE" +url="https://kde.org/applications/games/picmi/" +arch=(i686 x86_64) +license=(GPL LGPL FDL) +groups=(kde-applications kdegames) +depends=(libkdegames hicolor-icon-theme) +makedepends=(extra-cmake-modules kdoctools python) +conflicts=(kdegames-picmi) +replaces=(kdegames-picmi) +source=("https://download.kde.org/unstable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('13b032267e4f9215c231c5bd6e64e8050da5427ef87d6a4a444c2c2b9c84da39' + 'SKIP') +validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aa...@kde.org> + F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cf...@kde.org> + +prepare() { + mkdir -p build +} + +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 +}