1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-11 16:26:14 +02:00
build/pkg/util-linux/build
David Oberhollenzer d7ae731c13 Split up unbound and util-linux into smaller packages
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-03 17:47:02 +01:00

46 lines
1.1 KiB
Plaintext
Executable file

VERSION="2.33"
SRCDIR="util-linux-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://www.kernel.org/pub/linux/utils/util-linux/v$VERSION/"
SHA256SUM="f261b9d73c35bfeeea04d26941ac47ee1df937bd3b0583e748217c1ea423658a"
DEPENDS="bash-dev ncurses-dev zlib-dev crt-dev"
SUBPKG="libblkid libblkid-dev libfdisk libfdisk-dev libmount libmount-dev libsmartcols libsmartcols-dev libuuid libuuid-dev util-linux"
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/*.{files,desc} "$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"
}