void-packages/srcpkgs/python3/template

65 lines
1.8 KiB
Text
Raw Normal View History

# Template build file for 'python3'.
pkgname=python3
2014-03-13 08:16:01 +00:00
version=3.3.5
revision=1
wrksrc="Python-${version}"
short_desc="Interpreted, interactive, object-oriented programming language (3.x series)"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.python.org"
license="PSF"
distfiles="http://www.python.org/ftp/python/$version/Python-$version.tar.xz"
2014-03-13 08:16:01 +00:00
checksum=abe99b484434503d8b23be0f243ec27139e743a4798cd71c1dce3cf40e63b6e5
makedepends="libffi-devel readline-devel>=6.3 gdbm-devel openssl-devel
2013-11-20 06:52:19 +00:00
expat-devel sqlite-devel bzip2-devel zlib-devel liblzma-devel"
pre_configure() {
sed -i -e "s|^#.* /usr/local/bin/python|#!/usr/bin/python3|" Lib/cgi.py
rm -r Modules/expat
rm -r Modules/zlib
rm -r Modules/_ctypes/{darwin,libffi}*
}
if [ "$CROSS_BUILD" ]; then
2014-02-11 11:13:42 +00:00
msg_red "${pkgname}-${version} cannot be cross compiled right now.\n"
exit 0
fi
# Native build
do_configure() {
unset LD CC AR AS RANLIB
./configure ${configure_args} --with-threads --enable-ipv6 \
--with-signal-module --enable-shared --with-system-ffi \
2014-02-12 07:40:16 +00:00
--with-system-expat --with-computed-gotos \
--with-system-expat --with-dbmliborder=gdbm:ndbm \
2014-02-12 07:40:16 +00:00
ac_cv_posix_semaphores_enabled=yes
}
do_build() {
make ${makejobs}
}
do_install() {
make DESTDIR=${DESTDIR} install maninstall
install -Dm644 LICENSE ${DESTDIR}/usr/share/licenses/${pkgname}/LICENSE
rm -f ${DESTDIR}/usr/bin/2to3
ln -sf ../../libpython3.3m.so \
${DESTDIR}/usr/lib/python3.3/config-3.3m/libpython3.3m.so
}
python3-devel_package() {
2014-02-12 07:40:16 +00:00
depends="${sourcepkg}>=${version}_${revision}"
2013-09-17 07:11:04 +00:00
short_desc+=" - development files"
pkg_install() {
vmove "usr/bin/python*-config"
vmove usr/lib/pkgconfig
2013-09-26 23:52:05 +00:00
vmove usr/include
mkdir -p ${DESTDIR}/usr/include/python3.3m
mv ${PKGDESTDIR}/usr/include/python3.3m/pyconfig.h \
${DESTDIR}/usr/include/python3.3m
}
}