mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
20 lines
686 B
Bash
20 lines
686 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com>
|
||
|
|
||
|
pkgname=python-constraint
|
||
|
pkgver=1.1
|
||
|
pkgrel=3
|
||
|
pkgdesc="python-constraint is a Python module offering solvers for Constraint Solving Problems (CSPs) over finite domains in simple and pure Python."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://labix.org/python-constraint"
|
||
|
license=('GPL')
|
||
|
depends=('python>=2.4')
|
||
|
source=("http://labix.org/download/python-constraint/$pkgname-$pkgver.tar.bz2")
|
||
|
md5sums=('975e5449d6670dd19498bb9ec4856d39')
|
||
|
sha1sums=('74bb4f8cd53469048626ca12486b1e844be85af1')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
python setup.py install --root=$startdir/pkg
|
||
|
}
|