mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
38 lines
950 B
Bash
38 lines
950 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=kbackgammon
|
|
_pkgname=KBackgammon
|
|
_pkgname2=backgammon
|
|
pkgver=0.18
|
|
_pkgver=018
|
|
pkgrel=3
|
|
pkgdesc="Application to play Backgammon-like games."
|
|
arch=('i686' 'x86_64')
|
|
url="http://kde-apps.org/content/show.php?content=142680"
|
|
screenshot="http://kde-apps.org/CONTENT/content-pre1/142680-1.png"
|
|
license=('GPL3')
|
|
depends=('kdelibs' 'kdegames-libkdegames')
|
|
makedepends=(automoc4 cmake)
|
|
categories=('games')
|
|
source=(http://kde-apps.org/CONTENT/content-files/142680-${_pkgname2}_${_pkgver}.tar.gz)
|
|
md5sums=('4c3a404f80e12b67c34f8da23159a4d4')
|
|
|
|
build() {
|
|
cd $srcdir/$_pkgname2
|
|
[[ -d build ]] && rm -r build
|
|
mkdir build && cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$_pkgname2/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|