diff options
Diffstat (limited to 'libnewt/Pkgfile')
-rw-r--r-- | libnewt/Pkgfile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libnewt/Pkgfile b/libnewt/Pkgfile index 9b0f17816..9bb78ff08 100644 --- a/libnewt/Pkgfile +++ b/libnewt/Pkgfile @@ -1,11 +1,11 @@ # Description: a programming library for color text mode # URL: https://pagure.io/newt # Maintainer: Tim Biermann, tbier at posteo dot de -# Depends on: slang python popt +# Depends on: slang popt python3 name=libnewt version=0.52.21 -release=1 +release=2 source=(https://releases.pagure.org/newt/newt-$version.tar.gz) git=(https://pagure.io/newt.git) @@ -15,5 +15,7 @@ build() { ./configure --prefix=/usr --disable-nls make make DESTDIR=$PKG install - rm -fr $PKG/usr/share/locale + rm -r $PKG/usr/share/locale + # with python2 around, it populates this weird path + rm -r $PKG/usr/lib/usr || true } |