Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 37 lines (27 sloc) 888 Bytes
#!/usr/bin/env beesh
# BEE_VERSION debootstrap-1.0.134-0
#SRCURL[0]=https://salsa.debian.org/installer-team/debootstrap/-/archive/${PKGVERSION}/debootstrap-${PKGVERSION}.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/6c7e9f565f96ad04c623ad93a2806709/debootstrap-1.0.134.tar.gz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
#mee_configure() {
# bee_configure
#}
#mee_build() {
# bee_build
#}
mee_install() {
VERSION=$(sed 's/.*(\(.*\)).*/\1/; q' debian/changelog)
sed -i 's/@VERSION@/$(VERSION)/g' debootstrap
install -v -m 755 -D -t ${D}/usr/sbin debootstrap
install -v -m 644 -D -t ${D}/usr/share/debootstrap functions
cp -r -t ${D}/usr/share/debootstrap scripts
install -v -m 644 -D -t ${D}/usr/share/man/man8 debootstrap.8
}