mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
679 B
Bash
22 lines
679 B
Bash
# Maintainer: Paulo Matias <matiasΘarchlinux-br·org>
|
|
# Contributor: Peter Garceau <RockyChimp@gmail.com>
|
|
|
|
pkgname=python-sympy
|
|
pkgver=0.6.5
|
|
pkgrel=1
|
|
pkgdesc="Symbolic manipulation package (Computer Algebra System), written in pure Python"
|
|
url="http://code.google.com/p/sympy"
|
|
license=('BSD')
|
|
depends=('python')
|
|
makedepends=()
|
|
conflicts=('sympy')
|
|
provides=('sympy')
|
|
arch=('i686' 'x86_64')
|
|
md5sums=('468589180c259a5b394bc04cdffbfe98')
|
|
source=(http://sympy.googlecode.com/files/sympy-${pkgver}.tar.gz)
|
|
|
|
build() {
|
|
cd "${srcdir}/sympy-${pkgver}"
|
|
python setup.py install --root "${pkgdir}" || return 1
|
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|