blob: fd401417547e70c01b5d70c643859cfbf4df1d70 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #!/bin/sh -e
patch -p0 < musl.patch
./configure \
	--prefix=/usr \
	--without-x \
	--disable-rpath \
	--with-doc=no \
	--disable-nls
make
make DESTDIR="$1" install
for file in /usr/share/man/man7/roff.7 /usr/share/man/man1/soelim.1 /usr/bin/soelim ; do
	rm "$1/$file"
done
 |