diff options
author | Alexis Polti | 2021-10-18 13:25:00 +0200 |
---|---|---|
committer | Alexis Polti | 2021-10-18 13:25:32 +0200 |
commit | ad195b684cae005bdeb4a29011956a309d4fd803 (patch) | |
tree | 29a3ea02eae6edc370458d3e0a8e43d88f4de4b1 | |
parent | 5c79df48e21c0d45fb9eeed42d28879ee8af9336 (diff) | |
download | aur-ad195b684cae005bdeb4a29011956a309d4fd803.tar.gz |
Fix missing Firmwares directory
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ pkgbase = jlink-software-and-documentation pkgdesc = Segger JLink software & documentation pack for Linux pkgver = 7.56a - pkgrel = 0 + pkgrel = 1 epoch = 41 url = https://www.segger.com/jlink-software.html install = jlink-software-and-documentation.install @@ -3,7 +3,7 @@ pkgname=jlink-software-and-documentation pkgver=7.56a -pkgrel=0 +pkgrel=1 epoch=41 pkgdesc="Segger JLink software & documentation pack for Linux" arch=('i686' 'x86_64' 'armv7h' 'aarch64' ) @@ -111,8 +111,8 @@ package(){ # Bulk copy everything if [ ${CARCH} = "armv7h" ]; then - cp --preserve=mode -r J* Devices README.txt GDBServer lib* "${pkgdir}/opt/SEGGER/JLink" - else cp --preserve=mode -r J* Doc Samples ETC Devices README.txt GDBServer lib* "${pkgdir}/opt/SEGGER/JLink" + cp --preserve=mode -r J* Devices README.txt GDBServer Firmwares lib* "${pkgdir}/opt/SEGGER/JLink" + else cp --preserve=mode -r J* Doc Samples ETC Devices README.txt Firmwares GDBServer lib* "${pkgdir}/opt/SEGGER/JLink" fi if [ ${CARCH} = "x86_64" ]; then cp --preserve=mode -r x86 "${pkgdir}/opt/SEGGER/JLink" |