blob: fcbfc500e74312c8d3c6eafb79fffeb786bf12df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $Id: PKGBUILD 94083 2010-10-04 12:47:13Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributer: Jason Chu <jason@archlinux.org>
pkgname=python
pkgver=3.1.2
pkgrel=3
_pybasever=3.1
pkgdesc="Next generation of the python high-level scripting language"
arch=('i686' 'x86_64')
license=('custom')
url="http://www.python.org"
depends=('expat' 'bzip2' 'gdbm' 'openssl' 'zlib')
makedepends=('tk' 'sqlite3')
optdepends=('tk: for tkinter')
provides=('python3')
replaces=('python3')
conflicts=('python2')
options=('!makeflags')
source=(http://www.python.org/ftp/python/${pkgver}/Python-${pkgver}.tar.bz2
python-internal-expat.patch)
md5sums=('45350b51b58a46b029fb06c61257e350'
'993800dbcc0c4f199c1ceee998a06e71')
build() {
cd ${srcdir}/Python-${pkgver}
patch -Np0 -i ${srcdir}/python-internal-expat.patch
export OPT="${CFLAGS}"
./configure --prefix=/usr --enable-shared --with-threads --with-computed-gotos \
--enable-unicode --with-wide-unicode
make || return 1
}
package() {
cd ${srcdir}/Python-${pkgver}
make DESTDIR=${pkgdir} install || return 1
# why are these not done by default...
ln -sf python3 ${pkgdir}/usr/bin/python
ln -sf python3-config ${pkgdir}/usr/bin/python-config
ln -sf idle3 ${pkgdir}/usr/bin/idle
ln -sf pydoc3 ${pkgdir}/usr/bin/pydoc
# clean-up reference to build directory
sed -i "s#$srcdir/Python-${pkgver}:##" $pkgdir/usr/lib/python3.1/config/Makefile
# Fix conflicts with python2 - python2 version is newer...
rm ${pkgdir}/usr/bin/2to3
# license
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
|