edgetx-companion/PKGBUILD

78 lines
2.9 KiB
Bash
Raw Normal View History

2021-11-05 17:51:09 +01:00
# Maintainer: lod <aur@cyber-anlage.de>
# Contributer: Ysblokje <ysblokje at gmail dot com>
# Contributer: Jeff Youdontneedtoknow <jeffpublicjr at gmail dot com>
# Contributer: Arnaud
2021-11-05 17:51:09 +01:00
pkgname=edgetx-companion
2024-08-03 14:21:18 +02:00
pkgver=2.10.3
2024-02-21 03:37:13 +01:00
pkgrel=1
pkgdesc="EEPROM Editor and Simulator for EdgeTX RC radio transmitter firmwares"
2021-11-05 17:51:09 +01:00
arch=('x86_64')
url='https://edgetx.org/'
2024-01-19 19:31:27 +01:00
license=('GPL-2.0-only')
2023-11-16 17:49:30 +01:00
depends=('gcc-libs' 'glibc' 'hicolor-icon-theme' 'qt5-base' 'qt5-multimedia' 'sdl2')
2021-11-05 17:51:09 +01:00
optdepends=('dfu-util: tool for flashing stm32 based radios')
2022-01-23 11:47:39 +01:00
makedepends=('arm-none-eabi-binutils' 'arm-none-eabi-gcc' 'arm-none-eabi-newlib'
2023-10-05 09:16:44 +02:00
'avr-gcc' 'avr-libc' 'bc' 'clang' 'cmake' 'fox' 'gcc' 'git' 'icu' 'python'
2024-04-21 14:14:47 +02:00
'python-jinja' 'python-lz4' 'python-pillow' 'python-pyqt5' 'qt5-svg'
'qt5-tools' 'qt5-translations' 'sed' 'xsd')
2023-08-07 20:05:51 +02:00
options=('!debug')
2021-11-05 17:51:09 +01:00
provides=('companion')
conflicts=('companion')
2024-05-12 16:29:31 +02:00
source=("git+https://github.com/EdgeTX/edgetx.git#tag=v$pkgver"
"git+https://github.com/raphaelcoeffic/AccessDenied.git"
"git+https://github.com/FreeRTOS/FreeRTOS-Kernel.git"
2024-04-21 14:14:47 +02:00
"git+https://github.com/adfernandes/segger-rtt.git"
"git+https://github.com/FreeRTOS/FreeRTOS-Kernel-Community-Supported-Ports.git"
"git+https://github.com/FreeRTOS/FreeRTOS-Kernel-Partner-Supported-Ports.git"
"git+https://github.com/EdgeTX/lvgl.git"
"git+https://github.com/nothings/stb.git"
2024-01-19 19:31:27 +01:00
install.patch)
2024-08-03 14:21:18 +02:00
b2sums=('7d534ebdeea1c64e5e2dc02f7f854c2784e3d3e397963be501e41708401f1fb7070227aec84e77ef027e04d076108add3fb1d7f9bc103f5e14534b9e24569af3'
2023-08-07 20:05:51 +02:00
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
2024-01-27 12:03:23 +01:00
'97badff74d64db444a780f48a3003e4a7232e7c0ab1ef43f9adbf20044c988f41dd455dc5aad548e5d3501ccc7a1ad9967a69bf43cbd2bb133eb6d00d50f210c')
2021-11-05 17:51:09 +01:00
prepare() {
2023-02-18 12:03:45 +01:00
export EDGETX_VERSION_TAG=$pkgver
2024-01-19 19:31:27 +01:00
_pkgbase=$srcdir/${pkgname%%-*}
cd $_pkgbase
2023-11-16 17:49:30 +01:00
patch ./tools/build-companion.sh < $srcdir/install.patch
2024-01-19 19:31:27 +01:00
# Deactivate these functions; they bundle the libs for AppImage.
for pattern in "LIBSSL1" "LIBUSB1" "DFU_UTIL"; do
sed -i "s/if(${pattern}_FOUND)/if(false)/g" ./companion/src/CMakeLists.txt
done
declare -A submodules=(
2024-04-21 14:14:47 +02:00
["$_pkgbase/radio/src/thirdparty/"]="AccessDenied FreeRTOS-Kernel Segger_RTT"
["$_pkgbase/radio/src/thirdparty/FreeRTOS/portable/ThirdParty/"]="FreeRTOS-Kernel-Community-Supported-Ports FreeRTOS-Kernel-Partner-Supported-Ports"
["$_pkgbase/radio/src/thirdparty/libopenui/thirdparty/"]="lvgl stb"
)
for path in "${!submodules[@]}"; do
cd $path
git submodule init
for module in ${submodules[$path]}; do
git config submodule.$module.url $srcdir/$module
done
git submodule update --init
done
2021-11-05 17:51:09 +01:00
}
build() {
cd $srcdir/edgetx
./tools/build-companion.sh $MAKEFLAGS $srcdir/edgetx $srcdir/build
2021-11-05 17:51:09 +01:00
}
package() {
cd $srcdir/build/native
make DESTDIR=$pkgdir/ install
2021-11-05 17:51:09 +01:00
}