mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
538 B
Bash
25 lines
538 B
Bash
pkgname=gnuchess
|
|
pkgver=6.2.5
|
|
pkgrel=1
|
|
pkgdesc="Application able to play chess (against another software or a human)"
|
|
url="http://www.gnu.org/software/chess/chess.html"
|
|
arch=('x86_64')
|
|
license=('GPL3')
|
|
depends=('bash')
|
|
install=$pkgname.install
|
|
categories=('games')
|
|
source=(ftp://ftp.gnu.org/pub/gnu/chess/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('203572a43886fc2201662b9eb3b0f540')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make prefix=$pkgdir/usr install
|
|
}
|