wok-6.x diff py3k/receipt @ rev 15090
pinentry: add bdeps...
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Aug 13 21:20:52 2013 +0000 (2013-08-13) |
parents | 451fc310dda0 |
children | a6a127d9957f |
line diff
1.1 --- a/py3k/receipt Sun Oct 16 07:08:02 2011 +0000 1.2 +++ b/py3k/receipt Tue Aug 13 21:20:52 2013 +0000 1.3 @@ -5,13 +5,16 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="The Python 3000 programming language." 1.6 MAINTAINER="pascal.bellard@slitaz.org" 1.7 +LICENSE="GPL" 1.8 SOURCE="Python" 1.9 -DEPENDS="openssl bzlib readline sqlite zlib xorg-libXss ncursesw gdbm \ 1.10 -tk xorg-libXext" 1.11 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.12 WEB_SITE="http://www.python.org/download/releases/3.2/" 1.13 WGET_URL="http://www.python.org/ftp/python/$VERSION/$TARBALL" 1.14 1.15 +DEPENDS="openssl bzlib readline sqlite zlib xorg-libXss ncursesw gdbm \ 1.16 +tk xorg-libXext" 1.17 +BUILD_DEPENDS="readline-dev gdbm-dev openssl-dev sqlite-dev zlib-dev tk-dev" 1.18 + 1.19 # Rules to configure and make the package. 1.20 compile_rules() 1.21 { 1.22 @@ -28,10 +31,10 @@ 1.23 { 1.24 python_version=${VERSION:0:3} 1.25 mkdir -p $fs/usr/include/python${python_version}m 1.26 - cp -a $_pkg/usr/bin $fs/usr 1.27 - cp -a $_pkg/usr/lib $fs/usr 1.28 + cp -a $install/usr/bin $fs/usr 1.29 + cp -a $install/usr/lib $fs/usr 1.30 # needed for python3 to work 1.31 - cp -a $_pkg/usr/include/python${python_version}m/pyconfig.h \ 1.32 + cp -a $install/usr/include/python${python_version}m/pyconfig.h \ 1.33 $fs/usr/include/python${python_version}m 1.34 rm -f $fs/usr/bin/*-config 1.35 }