36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
# Template file for 'avr-gdb'
|
|
pkgname=avr-gdb
|
|
version=12.1
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--target=avr --disable-werror --disable-nls --with-system-readline
|
|
--with-system-gdbinit=/etc/gdb/gdbinit --with-system-zlib
|
|
$(vopt_with guile) $(vopt_if python --with-python=/usr/bin/python3)"
|
|
hostmakedepends="pkg-config texinfo $(vopt_if guile guile)
|
|
$(vopt_if python "python3-setuptools python3-devel")"
|
|
makedepends="expat-devel ncurses-devel readline-devel zlib-devel gmp-devel
|
|
$(vopt_if guile guile-devel) $(vopt_if python 'gettext-devel python3-devel')"
|
|
depends="gdb-common"
|
|
short_desc="GNU Debugger for AVR"
|
|
maintainer="Artur Sinila <opensource@logarithmus.dev>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.gnu.org/software/gdb"
|
|
distfiles="${GNU_SITE}/gdb/gdb-${version}.tar.xz"
|
|
checksum=0e1793bf8f2b54d53f46dea84ccfd446f48f81b297b28c4f7fc017b818d69fed
|
|
make_check=no # See gdb/template.
|
|
replaces="cross-avr-gdb>=0"
|
|
|
|
if [ "${CROSS_BUILD}" ]; then
|
|
# Make python3.x detection work in cross builds
|
|
CPPFLAGS="-I${XBPS_CROSS_BASE}/${py3_inc}"
|
|
fi
|
|
|
|
# Package build options
|
|
build_options="guile python"
|
|
build_options_default="python"
|
|
|
|
post_install() {
|
|
# resolve conflicts with gdb-common
|
|
rm -r ${DESTDIR}/usr/{share/{gdb,info},include}
|
|
}
|