21 lines
399 B
Bash
21 lines
399 B
Bash
pkgname=bloom
|
|
pkgver=2.0.0
|
|
pkgrel=1
|
|
pkgdesc="On-chip debugging for AVR and RISC-V microcontrollers"
|
|
arch=('i686' 'x86_64')
|
|
url="https://bloom.oscillate.io"
|
|
license=('LGPLv3')
|
|
|
|
package(){
|
|
depends=(
|
|
'gcc-libs>=13.2.0'
|
|
'glibc>=2.18'
|
|
'qt6-base'
|
|
'qt6-tools'
|
|
'qt6-svg'
|
|
)
|
|
|
|
mkdir -p "${pkgdir}/"
|
|
cp -R /home/doryan/Bloom/packaging/pkgbuild/playground/build_root/* "${pkgdir}/"
|
|
}
|