blob: 15fefbabbdfe79c4140c9f2d1346d30f95170cc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh -e
./configure \
--prefix=/usr/gnu \
--with-shared \
--enable-rpath \
--enable-pc-files \
--enable-symlinks
gmake
gmake DESTDIR=$1 install
# Install the ncurses in lib
#FIXME: arch
mkdir -p $1/usr/lib
mv $1/usr/gnu/lib/libncurses.so* $1/usr/lib
|