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
@wwwutz
Latest commit c8b339b Oct 25, 2021 History
- fixed SRCURL
- NLS=1
Signed-off-by: Peter Marquardt <wwwutz@molgen.mpg.de>
2 contributors

Users who have contributed to this file

@pmenzel @wwwutz
executable file 38 lines (28 sloc) 678 Bytes
#!/usr/bin/env beesh
# BEE_VERSION tar-1.34-0
# SRCURL[0]="https://ftp.gnu.org/gnu/tar/tar-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/9a08d29a9ac4727130b5708347c0f5cf/tar-1.34.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
start_cmd sed -i 's/abort.*/FALLTHROUGH;/' src/extract.c
}
mee_configure() {
export FORCE_UNSAFE_CONFIGURE=1
bee_configure \
--disable-nls
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install
ln -sf tar ${D}/${BINDIR}/gtar
mkdir -p ${D}/bin
ln -sf ${BINDIR}/tar ${D}/bin/tar
}