compat-32/ncurses-32/Pkgfile

31 lines
664 B
Plaintext
Raw Normal View History

# Description: A System V Release 4.0 curses emulation library
# URL: http://www.gnu.org/software/ncurses/ncurses.html
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=ncurses-32
2020-02-23 07:17:25 +01:00
version=6.2
release=1
2018-01-31 02:30:41 +01:00
source=(https://ftp.gnu.org/gnu/ncurses/ncurses-$version.tar.gz)
build() {
cd ncurses-$version
2015-11-18 15:14:40 +01:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--with-normal \
--with-shared \
--without-debug \
--without-ada \
--without-tests \
--enable-pc-files \
--with-pkg-config-libdir=/usr/lib32/pkgconfig \
--without-gpm \
--enable-widec
2015-11-18 15:14:40 +01:00
make
make DESTDIR=$PKG install
2015-11-18 15:14:40 +01:00
rm -r $PKG/usr/{bin,include,share}
}