0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-01-31 21:22:27 +00:00
Termux Github Actions ccbe0ed14d bump(main/debootstrap): 1.0.140
This commit has been automatically submitted by Github Actions.
2025-01-03 12:11:31 +00:00

31 lines
1.2 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://wiki.debian.org/Debootstrap
TERMUX_PKG_DESCRIPTION="Bootstrap a basic Debian system"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_LICENSE_FILE="debian/copyright"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.0.140"
TERMUX_PKG_SRCURL=https://deb.debian.org/debian/pool/main/d/debootstrap/debootstrap_${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=c95eb2aeb952b3fd09f4a07859115d40c4d04a8d551b3071b0a10fcd0db7ebc4
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="binutils | binutils-is-llvm, perl, proot, sed, wget"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_PLATFORM_INDEPENDENT=true
termux_step_make() {
:
}
termux_step_make_install() {
find ${TERMUX_PKG_SRCDIR}/.. -name "*.orig" -delete
local VERSION=$(sed 's/.*(\(.*\)).*/\1/; q' debian/changelog)
mkdir -p ${TERMUX_PREFIX}/share/debootstrap/scripts
cp -a scripts/* ${TERMUX_PREFIX}/share/debootstrap/scripts/
install -m 0644 functions ${TERMUX_PREFIX}/share/debootstrap/
sed "s/@VERSION@/${VERSION}/g" debootstrap > ${TERMUX_PREFIX}/bin/debootstrap
chmod 0755 ${TERMUX_PREFIX}/bin/debootstrap
mkdir -p ${TERMUX_PREFIX}/share/man/man8/
install ${TERMUX_PKG_SRCDIR}/debootstrap.8 ${TERMUX_PREFIX}/share/man/man8/
}