1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-09 07:16:13 +02:00
build/pkg/util-linux/build
David Oberhollenzer 50dce293c1 Add helper macro for running configure with standard arguments
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
2018-09-03 13:58:35 +02:00

44 lines
1 KiB
Plaintext
Executable file

VERSION="2.32"
SRCDIR="util-linux-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://www.kernel.org/pub/linux/utils/util-linux/v$VERSION/"
SHA256SUM="6c7397abc764e32e8159c2e96042874a190303e77adceb4ac5bd502a272a4734"
DEPENDS="bash ncurses zlib"
prepare() {
apply_patches
}
build() {
ADJTIME_PATH=/var/lib/hwclock/adjtime \
run_configure "$1" --disable-pylibmount --without-python \
--without-systemd --without-systemdsystemunitdir \
--disable-makeinstall-chown \
--disable-makeinstall-setuid \
--enable-agetty
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local DEPLOY="$2"
local UTIL
mkdir -p "$DEPLOY/var/lib/hwclock"
unfuck_libtool
make DESTDIR="$DEPLOY" install
if [ -e "$DEPLOY/sbin" ]; then
mv ${DEPLOY}/sbin/* ${DEPLOY}/bin
fi
cp "$SCRIPTDIR/pkg/$PKGNAME/rootfs_files.txt" "$DEPLOY"
}
check_update() {
curl --silent -L "https://www.kernel.org/pub/linux/utils/util-linux" | \
grep -o "v[0-9.]*/" | grep -o "[0-9.]*" | \
verson_find_greatest "$VERSION"
}