1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-20 20:46:13 +02:00
build/pkg/util-linux/build
David Oberhollenzer 525b36aa89 Cleanup deploy/devdeploy split
- Don't duplicate shared objects, use the ones from the deploy
   directory when building dependend packages
 - Add helper function for moving headers, static libraries
   and pkgconfig data to devdeploy directory

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-02-10 19:59:51 +01:00

86 lines
1.9 KiB
Plaintext
Executable file

VERSION="2.31"
SRCDIR="util-linux-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://www.kernel.org/pub/linux/utils/util-linux/v$VERSION/"
SHA256SUM="f9be7cdcf4fc5c5064a226599acdda6bdf3d86c640152ba01ea642d91108dc8a"
DEPENDS="bash ncurses zlib"
prepare() {
apply_patches
}
build() {
local SOURCE="$1"
$SOURCE/configure ADJTIME_PATH=/var/lib/hwclock/adjtime \
--prefix="" --host="$TARGET" \
--with-bashcompletiondir="/share/bash-completion/completions" \
--sbindir="/bin" \
--disable-pylibmount \
--disable-static \
--without-python \
--without-systemd \
--without-systemdsystemunitdir \
--disable-makeinstall-chown \
--disable-makeinstall-setuid \
--enable-agetty \
--disable-cal \
--disable-chmem \
--disable-fdformat \
--disable-fsck \
--disable-logger \
--disable-mesg \
--disable-minix \
--disable-bfs \
--disable-more \
--disable-nologin \
--disable-nsenter \
--disable-pivot_root \
--disable-raw \
--disable-sulogin \
--disable-switch_root \
--disable-ul \
--disable-unshare \
--disable-utmpdump \
--disable-uuidd \
--disable-wall \
--disable-zramctl
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
local DEVDEPLOY="$4"
mkdir -p "$DEPLOY/var/lib/hwclock"
make DESTDIR="$DEPLOY" install-strip
rm -r "$DEPLOY/share/man"
rm -r "$DEPLOY/share/doc"
rm -r ${DEPLOY}/lib/*.la
if [ -e "$DEPLOY/sbin" ]; then
mv ${DEPLOY}/sbin/* ${DEPLOY}/bin
rmdir ${DEPLOY}/sbin
fi
for UTIL in chcpu chrt col colcrt colrm column ctrlaltdel setarch \
isosize look lsns mcookie mkfs mkswap readprofile rev \
script scriptreplay setsid swaplabel swapoff swapon \
uname26 i386 linux32 linux64 whereis last lastb \
lslogins fsck.cramfs mkfs.cramfs;
do
local path="$DEPLOY/bin/$UTIL"
if [ -f "$path" ] || [ -L "$path" ]; then
rm "$path"
fi
done
split_dev_deploy "$DEPLOY" "$DEVDEPLOY"
}