mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
798 B
Bash
26 lines
798 B
Bash
|
# Maintainer: Chris Brannon <cmbrannon79@gmail.com>
|
||
|
# Contributor : Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
||
|
|
||
|
pkgname=ipython
|
||
|
pkgver=0.10
|
||
|
pkgrel=2
|
||
|
pkgdesc="An enhanced Interactive Python shell."
|
||
|
arch=('any')
|
||
|
url="http://ipython.scipy.org/"
|
||
|
depends=('python')
|
||
|
optdepends=('wxpython: needed for ipythonx and ipython-wx'
|
||
|
'twisted: networking-related tasks')
|
||
|
license=('custom')
|
||
|
source=(http://ipython.scipy.org/dist/$pkgname-$pkgver.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
mkdir -p $startdir/pkg/usr/share/licenses/ipython/
|
||
|
install -m644 docs/source/license_and_copyright.txt $startdir/pkg/usr/share/licenses/ipython/license.txt
|
||
|
|
||
|
python setup.py install --root=$startdir/pkg
|
||
|
|
||
|
rm -rf $startdir/pkg/usr/share/doc
|
||
|
}
|
||
|
md5sums=('dd10cd1b622c16c1afca2239fcc0dfdf')
|