diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 23:00:12 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-03-30 23:00:12 -0400 |
commit | 0f7fc864d98d3e8a852d3a6a835ae3331fde1bad (patch) | |
tree | 24b4ac4b7a476b0bb1607476531c5ba1a5f63a7e /python | |
parent | 39c272221a8baf3b3f2768d9de4f61abea57cf1f (diff) | |
download | spm_packages-0f7fc864d98d3e8a852d3a6a835ae3331fde1bad.tar.gz |
Current state
Diffstat (limited to 'python')
-rw-r--r-- | python/build.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/build.sh b/python/build.sh index c3223a8..380e20f 100644 --- a/python/build.sh +++ b/python/build.sh @@ -1,17 +1,17 @@ #!/bin/bash name=python -version=3.8.1 +version=3.8.2 _basever=${version%.*} revision=0 sources=( "https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz" ) build_depends=( - "sed" "grep" - "automake" - "autoconf" + "sed" + "pkgconf" "xz" + "tk==8.6.9" ) depends=( "bzip2" @@ -23,9 +23,9 @@ depends=( "ncurses" "openssl==1.1.1d" "tar" + "tk==8.6.9" "readline" "sqlite" - "tk" "zlib" ) |