diff options
Diffstat (limited to 'main/python3/APKBUILD')
-rw-r--r-- | main/python3/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/python3/APKBUILD b/main/python3/APKBUILD index bc812ba54f..8163de32b5 100644 --- a/main/python3/APKBUILD +++ b/main/python3/APKBUILD @@ -5,7 +5,7 @@ pkgname=python3 # the python2-tkinter's pkgver needs to be synchronized with this. pkgver=3.6.3 _basever="${pkgver%.*}" -pkgrel=8 +pkgrel=9 pkgdesc="A high-level scripting language" url="http://www.python.org" arch="all" @@ -109,6 +109,9 @@ package() { cd "$builddir" make -j1 DESTDIR="$pkgdir" EXTRA_CFLAGS="$CFLAGS" install maninstall install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + # those are provided by python3-tkinter + rm -r "$pkgdir"/usr/bin/idle* "$pkgdir"/usr/lib/python*/idlelib \ + "$pkgdir"/usr/lib/python*/tkinter } dev() { |