2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-09-30 21:40:58 -06:00
repo/extra/dosfstools/build

15 lines
268 B
Plaintext
Raw Normal View History

2020-01-21 13:55:38 -07:00
#!/bin/sh -e
2021-07-05 15:48:59 -06:00
# Disable documentation (READMEs and such).
sed 's/^\(dist_doc_DATA\)/\1_null/' Makefile.in > _
mv -f _ Makefile.in
2020-01-21 13:55:38 -07:00
./configure \
--prefix=/usr \
2020-02-10 16:10:07 -07:00
--sbindir=/usr/bin \
2020-01-21 13:55:38 -07:00
--mandir=/usr/share/man \
--enable-compat-symlinks
make
2021-07-17 12:28:19 -06:00
make install