mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
119 lines
4.7 KiB
Makefile
119 lines
4.7 KiB
Makefile
################################################################################
|
|
# This file is part of OpenELEC - http://www.openelec.tv
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
#
|
|
# OpenELEC is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# OpenELEC is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
PKG_NAME="util-linux"
|
|
PKG_VERSION="2.27.1"
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_URL="http://www.kernel.org/pub/linux/utils/util-linux/v2.27/$PKG_NAME-$PKG_VERSION.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_DEPENDS_INIT="toolchain"
|
|
PKG_PRIORITY="optional"
|
|
PKG_SECTION="system"
|
|
PKG_SHORTDESC="util-linux: Miscellaneous system utilities for Linux"
|
|
PKG_LONGDESC="The util-linux package contains a large variety of low-level system utilities that are necessary for a Linux system to function. Among many features, Util-linux contains the fdisk configuration tool and the login program."
|
|
|
|
PKG_IS_ADDON="no"
|
|
PKG_AUTORECONF="yes"
|
|
|
|
UTILLINUX_CONFIG_DEFAULT="--disable-gtk-doc \
|
|
--disable-nls \
|
|
--disable-rpath \
|
|
--enable-tls \
|
|
--disable-all-programs \
|
|
--enable-chsh-only-listed \
|
|
--enable-libmount-force-mountinfo \
|
|
--disable-bash-completion \
|
|
--disable-colors-default \
|
|
--disable-pylibmount \
|
|
--disable-pg-bell \
|
|
--disable-use-tty-group \
|
|
--disable-makeinstall-chown \
|
|
--disable-makeinstall-setuid \
|
|
--with-gnu-ld \
|
|
--without-selinux \
|
|
--without-audit \
|
|
--without-udev \
|
|
--without-ncurses \
|
|
--without-readline \
|
|
--without-slang \
|
|
--without-termcap \
|
|
--without-tinfo \
|
|
--without-utempter \
|
|
--without-util \
|
|
--without-libz \
|
|
--without-user \
|
|
--without-systemd \
|
|
--without-smack \
|
|
--without-python \
|
|
--without-systemdsystemunitdir"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="$UTILLINUX_CONFIG_DEFAULT \
|
|
--enable-libuuid \
|
|
--enable-libblkid \
|
|
--enable-libmount \
|
|
--enable-libsmartcols \
|
|
--enable-losetup \
|
|
--enable-fsck \
|
|
--enable-blkid"
|
|
|
|
if [ "$SWAP_SUPPORT" = "yes" ]; then
|
|
PKG_CONFIGURE_OPTS_TARGET="$PKG_CONFIGURE_OPTS_TARGET --enable-swapon"
|
|
fi
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--enable-static \
|
|
--disable-shared \
|
|
$UTILLINUX_CONFIG_DEFAULT \
|
|
--enable-uuidgen \
|
|
--enable-libuuid"
|
|
|
|
PKG_CONFIGURE_OPTS_INIT="--prefix=/ \
|
|
--bindir=/bin \
|
|
--sbindir=/sbin \
|
|
--sysconfdir=/etc \
|
|
--libexecdir=/lib \
|
|
--localstatedir=/var \
|
|
$UTILLINUX_CONFIG_DEFAULT \
|
|
--enable-libblkid \
|
|
--enable-libmount \
|
|
--enable-fsck"
|
|
|
|
if [ "$INITRAMFS_PARTED_SUPPORT" = "yes" ]; then
|
|
PKG_CONFIGURE_OPTS_INIT="$PKG_CONFIGURE_OPTS_INIT --enable-mkfs --enable-libuuid"
|
|
fi
|
|
|
|
post_makeinstall_target() {
|
|
if [ "$SWAP_SUPPORT" = "yes" ]; then
|
|
mkdir -p $INSTALL/usr/lib/libreelec
|
|
cp -PR $PKG_DIR/scripts/mount-swap $INSTALL/usr/lib/libreelec
|
|
|
|
mkdir -p $INSTALL/etc
|
|
cat $PKG_DIR/config/swap.conf | \
|
|
sed -e "s,@SWAPFILESIZE@,$SWAPFILESIZE,g" \
|
|
-e "s,@SWAP_ENABLED_DEFAULT@,$SWAP_ENABLED_DEFAULT,g" \
|
|
> $INSTALL/etc/swap.conf
|
|
fi
|
|
}
|
|
|
|
post_install () {
|
|
if [ "$SWAP_SUPPORT" = "yes" ]; then
|
|
enable_service swap.service
|
|
fi
|
|
}
|