Files
termux-packages/packages/debootstrap/build.sh
termux-pacman-bot fc504efa90 bump(main/debootstrap): 1.0.137
This commit has been automatically submitted by Github Actions.
2024-07-27 12:45:34 +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.137"
TERMUX_PKG_SRCURL=https://deb.debian.org/debian/pool/main/d/debootstrap/debootstrap_${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=666927457ee4b0b3e68e55a0efbf3fb69189610b7abbd534017d7032cb3ae833
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/
}