updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / plasma-tictactoe-plasmoid / PKGBUILD
blobde4814ef0f01cac71e01b1cac0e78289b3f5e393
1 # Maintainer: Bram Schoenmakers <me@bramschoenmakers.nl>
3 pkgname=plasma-tictactoe-plasmoid
4 pkgver=1.1
5 pkgrel=3
6 pkgdesc="A Tic Tac Toe game for your plasma desktop."
7 arch=('i686' 'x86_64')
8 url="http://www.kde-look.org/content/show.php?content=99329"
9 license=('GPL')
10 depends=('kdebase-workspace')
11 makedepends=('gcc' 'cmake' 'automoc4')
12 install=tictactoe.install
13 source=("https://sourceforge.net/projects/tatetiplasmoid/files/TicTacToe%20Plasmoid%20Releases/${pkgver}/TicTacToePlasmoid-${pkgver}.tar.bz2/download")
14 md5sums=('f1f3fa70df1c70acff0f193310f02bc2')
16 build() {
17   cd $srcdir/TicTacToePlasmoid-$pkgver
18   mkdir build && cd build
19   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
20   make
23 package() {
24   cd $srcdir/TicTacToePlasmoid-$pkgver/build
26   make DESTDIR="$pkgdir/" install
28 # vim:syntax=sh