22 lines
785 B
Bash
22 lines
785 B
Bash
# Maintainer: Rihards Skuja <rhssk at posteo dot eu>
|
|
|
|
pkgname=simplicity-commander
|
|
pkgver=1.14.4
|
|
pkgrel=1
|
|
pkgdesc='GUI and command line access to the debug features of Silicon Labs devices'
|
|
arch=('x86_64')
|
|
url='https://www.silabs.com/mcu/programming-options'
|
|
license=('LGPL')
|
|
options=('!strip')
|
|
depends=('jlink-software-and-documentation')
|
|
source=("$pkgname-$pkgver.zip::https://www.silabs.com/documents/public/software/SimplicityCommander-Linux.zip")
|
|
sha256sums=('e9fdcc75981141f627174d555ce77741c2c629c039a76f07ecbc9f2091864970')
|
|
|
|
package() {
|
|
cd "SimplicityCommander-Linux"
|
|
install -d "$pkgdir"/{usr/bin,opt}
|
|
tar -xjf Commander_linux_x86_64_*.tar.bz
|
|
cp -a "$srcdir/SimplicityCommander-Linux/commander" "$pkgdir/opt/$pkgname"
|
|
ln -s "/opt/$pkgname/commander" "$pkgdir/usr/bin/"
|
|
}
|