mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
35 lines
869 B
Bash
35 lines
869 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=kastling
|
|
pkgver=0.9.5
|
|
pkgrel=1
|
|
pkgdesc="Chess interface with Fics support."
|
|
arch=('i686' 'x86_64')
|
|
url="http://kde-apps.org/content/show.php?content=132703"
|
|
license=('GPL3')
|
|
makedepends=('kdelibs' 'qt')
|
|
categories=('games')
|
|
changelog=$pkgname.changelog
|
|
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver-src.tar.gz)
|
|
md5sums=('81a7dc7b9dc81984c0d97de74022c401')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver-src
|
|
qmake
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver-src
|
|
# make DESTDIR=$pkgdir install
|
|
|
|
# Manual installation...
|
|
install -Dm 755 $srcdir/$pkgname-$pkgver-src/$pkgname $pkgdir/usr/bin/$pkgname
|
|
}
|