Date: Friday, July 21, 2017 @ 19:49:30 Author: arojas Revision: 301000
archrelease: copy kde-unstable to kde-unstable-x86_64 Added: kfourinline/repos/kde-unstable-x86_64/ kfourinline/repos/kde-unstable-x86_64/PKGBUILD (from rev 300999, kfourinline/kde-unstable/PKGBUILD) ----------+ PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) Copied: kfourinline/repos/kde-unstable-x86_64/PKGBUILD (from rev 300999, kfourinline/kde-unstable/PKGBUILD) =================================================================== --- kde-unstable-x86_64/PKGBUILD (rev 0) +++ kde-unstable-x86_64/PKGBUILD 2017-07-21 19:49:30 UTC (rev 301000) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=kfourinline +pkgver=17.07.80 +pkgrel=1 +pkgdesc="A four-in-a-row game" +url="https://kde.org/applications/games/kfourinline/" +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-kfourinline) +replaces=(kdegames-kfourinline) +source=("https://download.kde.org/unstable/applications/$pkgver/src/kfourinline-$pkgver.tar.xz"{,.sig}) +sha256sums=('273559acd5d12c6d6171e7ffe0d496b6305bc2fa05735de9270351643b5915ae' + '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 +}