blob: 18d2f660bf3c8fd3e65103d04d4d41781f3b14da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: archlinux.info:tdy
pkgname=sjeng
pkgver=11.2
pkgrel=1
pkgdesc="An XBoard chess engine including a text-based interface and variant support (standard, bughouse, crazyhouse, antichess, losers)"
arch=(i686 x86_64)
url=https://sjeng.org
license=(GPL)
depends=(gdbm)
source=(https://$pkgname.org/ftp/Sjeng-Free-$pkgver.tar.gz)
sha256sums=(aaf584d12e79f8e366710d40cc02a27a7927dd924234421107b2fb8e84cfd727)
build() {
cd Sjeng-Free-$pkgver
./configure --prefix=/usr
make
}
package() {
cd Sjeng-Free-$pkgver
make DESTDIR="$pkgdir" install
}
|