mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
644 B
Bash
20 lines
644 B
Bash
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
|
# Contributor: Alexander Fehr <pizzapunk gmail com>
|
|
|
|
pkgname=pychess
|
|
pkgver=0.8.4
|
|
pkgrel=1
|
|
pkgdesc="Chess client for the GNOME desktop"
|
|
arch=('i686' 'x86_64')
|
|
url="http://pychess.googlepages.com/"
|
|
license=('GPL')
|
|
depends=('python-pysqlite' 'gnome-python-desktop' 'gnome-icon-theme'
|
|
'pygtksourceview2' 'gstreamer0.10-python')
|
|
install=pychess.install
|
|
source=(http://pychess.googlecode.com/files/pychess-$pkgver.tar.gz)
|
|
md5sums=('0176569ece3b0e01937e878f78dd9c5a')
|
|
|
|
build() {
|
|
cd $startdir/src/pychess-$pkgver
|
|
python setup.py install --prefix=/usr --root=$startdir/pkg || return 1
|
|
}
|