summaryrefslogtreecommitdiff
path: root/ncurses-32/Pkgfile
blob: e0e6c4c2bda26a5b49aa363b4fdd3730eeabad67 (plain)
    1 # Description: A System V Release 4.0 curses emulation library
    2 # URL:         http://www.gnu.org/software/ncurses/ncurses.html
    3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
    4 
    5 name=ncurses-32
    6 version=6.1
    7 release=1
    8 source=(https://ftp.gnu.org/gnu/ncurses/ncurses-$version.tar.gz)
    9 
   10 build() {
   11     cd ncurses-$version
   12 
   13 	./configure \
   14 		--prefix=/usr \
   15 		--libdir=/usr/lib32 \
   16 		--with-normal \
   17 		--with-shared \
   18 		--without-debug \
   19 		--without-ada \
   20 		--without-tests \
   21 		--enable-pc-files \
   22 		--with-pkg-config-libdir=/usr/lib32/pkgconfig \
   23 		--without-gpm \
   24 		--enable-widec
   25 
   26 	make
   27 	make DESTDIR=$PKG install
   28 
   29 	rm -r $PKG/usr/{bin,include,share}
   30 }

Generated by cgit