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 41 lines (31 sloc) 897 Bytes
#!/usr/bin/env beesh
# BEE_VERSION gdb-13.2-0
#SRCURL[0]="http://ftp.gnu.org/gnu/gdb/gdb-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/fbd3cdae16c581e8a742cb766ba35076/gdb-13.2.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
PYTHON3=/usr/local/system/python3/bin/python3
bee_configure \
--with-python=$PYTHON3 \
CPPFLAGS="-I/usr/local/system/python3/include/python3.7m" \
LDFLAGS="-L/usr/local/system/python3/lib -Wl,-rpath=/usr/local/system/python3/lib -lpython3.7m"
}
#mee_build() {
# bee_build
#}
mee_install() {
bee_install -C gdb
bee_install -C gdbserver
rm ${D}/usr/share/info/dir
rm -rf ${D}/usr/share/locale
rm -rf ${D}/usr/include
rm -rf ${D}/usr/share/gdb/system-gdbinit
}