desktop/gnuchess/PKGBUILD
2016-10-31 01:42:23 +00:00

25 lines
538 B
Bash

pkgname=gnuchess
pkgver=6.2.4
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=('4e1268030ba1ae83cbd03b3eac2f44a5')
build() {
cd $srcdir/$pkgname-$pkgver
./configure \
--prefix=/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make prefix=$pkgdir/usr install
}