2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00
repo/extra/dosfstools/build

15 lines
281 B
Plaintext
Raw Normal View History

2020-01-21 20:55:38 +00:00
#!/bin/sh -e
2021-07-05 21:48:59 +00:00
# Disable documentation (READMEs and such).
sed 's/^\(dist_doc_DATA\)/\1_null/' Makefile.in > _
mv -f _ Makefile.in
2020-01-21 20:55:38 +00:00
./configure \
--prefix=/usr \
2020-02-10 23:10:07 +00:00
--sbindir=/usr/bin \
2020-01-21 20:55:38 +00:00
--mandir=/usr/share/man \
--enable-compat-symlinks
make
2023-03-02 14:40:00 +00:00
make DESTDIR="$1" install