diff --git a/templates/python/devel.template b/templates/python/devel.template index e25d685982..89332d5852 100644 --- a/templates/python/devel.template +++ b/templates/python/devel.template @@ -12,5 +12,5 @@ do_install() mkdir -p ${DESTDIR}/usr/lib ${DESTDIR}/usr/bin mv ${SRCPKGDESTDIR}/usr/bin/python*-config ${DESTDIR}/usr/bin mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr - mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib + mv ${SRCPKGDESTDIR}/usr/lib/lib*.so* ${DESTDIR}/usr/lib } diff --git a/templates/python/template b/templates/python/template index 01e0cf8ef2..f93949c2dd 100644 --- a/templates/python/template +++ b/templates/python/template @@ -1,9 +1,11 @@ # Template build file for 'python'. pkgname=python version=2.6.4 +revision=1 wrksrc="Python-$version" distfiles="http://www.python.org/ftp/python/$version/Python-$version.tar.bz2" -configure_args="--with-threads --enable-ipv6 --with-signal-module" +configure_args="--with-threads --enable-ipv6 --with-signal-module + --enable-shared" build_style=gnu_configure short_desc="Interpreted, interactive, object-oriented programming language" maintainer="Juan RP " @@ -31,8 +33,3 @@ Add_dependency full expat Add_dependency full db Add_dependency build ncurses Add_dependency run ncurses-libs - -pre_configure() -{ - export OPT="${XBPS_CFLAGS} -fwrapv" -}