mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 12:41:50 +01:00
41 lines
980 B
Plaintext
41 lines
980 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=python
|
|
pkgver=2.6.5
|
|
pkgrel=2
|
|
pkgdesc="A high-level scripting language"
|
|
url="http://www.python.org"
|
|
license="custom"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
depends=
|
|
makedepends="expat-dev openssl-dev zlib-dev ncurses-dev bzip2-dev !gettext"
|
|
source="http://www.$pkgname.org/ftp/$pkgname/$pkgver/Python-$pkgver.tar.bz2
|
|
$pkgname-2.6-internal-expat.patch
|
|
"
|
|
|
|
prepare() {
|
|
cd "$srcdir/Python-$pkgver"
|
|
for i in ../*.patch; do
|
|
msg "Apply $i"
|
|
patch -p1 < $i || return 1
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$srcdir/Python-$pkgver"
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--with-threads \
|
|
--enable-unicode \
|
|
--disable-gdbm
|
|
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/Python-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
md5sums="6bef0417e71a1a1737ccf5750420fdb3 Python-2.6.5.tar.bz2
|
|
9d64df5e0a6aed149a792c7bff16e3d9 python-2.6-internal-expat.patch"
|