blob: 6798aa4372438ac1c8279af7770abbd96644fd78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh -e
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-pc-files \
--disable-rpath-hack \
--with-pkg-config-libdir=/usr/lib/pkgconfig \
--with-shared \
--enable-widec \
--without-ada \
--without-tests \
--without-debug \
--without-cxx-binding
make
make DESTDIR="$1" install
# These conflict with busybox's.
rm -f "$1/usr/bin/clear"
rm -f "$1/usr/bin/reset"
|