2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-08 00:42:28 +00:00
repo/core/mandoc/build

25 lines
456 B
Plaintext
Raw Normal View History

2019-08-13 10:49:28 +00:00
#!/bin/sh -e
2019-08-13 16:43:52 +00:00
sed -i'' 's,"more -s","less",g' main.c
2019-08-13 10:49:28 +00:00
cat > configure.local <<EOF
PREFIX=/usr
MANDIR=/usr/share/man
LIBDIR=/usr/lib
CFLAGS="$CFLAGS"
MANPATH_DEFAULT=/usr/share/man
LN="ln -sf"
EOF
MANPATH_BASE=/usr/share/man ./configure
make
make -j1 DESTDIR="$1" base-install lib-install
2019-08-29 10:49:04 +00:00
# Make binaries writable.
chmod -v u+w "$1/usr/bin/"*
# Remove all development files.
rm -rf "$1/usr/include" \
"$1/usr/lib" \
"$1/usr/share/man/man3"