diff options
Diffstat (limited to 'libnewt/Pkgfile')
-rw-r--r-- | libnewt/Pkgfile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libnewt/Pkgfile b/libnewt/Pkgfile index 9bb78ff08..5ee0640e1 100644 --- a/libnewt/Pkgfile +++ b/libnewt/Pkgfile @@ -4,18 +4,21 @@ # Depends on: slang popt python3 name=libnewt -version=0.52.21 -release=2 +version=0.52.22 +release=1 source=(https://releases.pagure.org/newt/newt-$version.tar.gz) git=(https://pagure.io/newt.git) build() { cd newt-$version + ./autogen.sh ./configure --prefix=/usr --disable-nls + make make DESTDIR=$PKG install rm -r $PKG/usr/share/locale + # with python2 around, it populates this weird path rm -r $PKG/usr/lib/usr || true } |