forked from ports/contrib
25 lines
551 B
Plaintext
25 lines
551 B
Plaintext
# Description: a programming library for color text mode
|
|
# URL: https://pagure.io/newt
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: slang popt python3
|
|
|
|
name=libnewt
|
|
version=0.52.23
|
|
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
|
|
}
|