57267c9fec
Since now X11 packages are official, it is necessary to rebuild them all to make sure that everything is okay.
30 lines
1.1 KiB
Bash
30 lines
1.1 KiB
Bash
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com> @xeffyr"
|
|
|
|
TERMUX_PKG_HOMEPAGE=https://xorg.freedesktop.org/
|
|
TERMUX_PKG_DESCRIPTION="X.org font encoding files"
|
|
TERMUX_PKG_VERSION=1.0.4
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://xorg.freedesktop.org/releases/individual/font/encodings-${TERMUX_PKG_VERSION}.tar.bz2
|
|
TERMUX_PKG_SHA256=ced6312988a45d23812c2ac708b4595f63fd7a49c4dcd9f66bdcd50d1057d539
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
|
|
termux_step_pre_configure() {
|
|
## Checking only for mkfontdir which is a part of xfonts-utils that provides
|
|
## tool mkfontscale used in further steps.
|
|
if [ -z "$(command -v mkfontdir)" ]; then
|
|
echo
|
|
echo "Command 'mkfontdir' is not found."
|
|
echo "Install it by running 'sudo apt install xfonts-utils'."
|
|
echo
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
cd "${TERMUX_PREFIX}"/share/fonts/encodings/large
|
|
mkfontscale -b -s -l -n -r -p "${TERMUX_PREFIX}"/share/fonts/encodings/large -e . .
|
|
|
|
cd "${TERMUX_PREFIX}"/share/fonts/encodings/
|
|
mkfontscale -b -s -l -n -r -p "${TERMUX_PREFIX}"/share/fonts/encodings -e . -e large .
|
|
}
|