2021-05-10 12:55:12 -04:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-05-11 00:07:37 -04:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--disable-account-tools-setuid \
|
|
|
|
--with-group-name-max-length=32 \
|
|
|
|
--without-audit \
|
|
|
|
--without-selinux \
|
|
|
|
--without-libpam
|
2021-05-10 12:55:12 -04:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
|
|
|
|
|
|
|
# Fix broken --sbindir.
|
|
|
|
mv -f "$1/usr/sbin/"* "$1/usr/bin"
|
|
|
|
rmdir "$1/usr/sbin"
|