2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/dosfstools/build

15 lines
268 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
2021-07-17 18:28:19 +00:00
make install